html, body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
    scroll-behavior: smooth; /* Smooth scrolling */
}

body {
    background-color: #03451f;
    color: yellow;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 70px; /* Adjust to move content below navbar */
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: black;
    padding: 10px 0;
    text-align: center;
    z-index: 1000;
    box-shadow: 0px 4px 8px rgba(255, 255, 0, 0.7);
}

.navbar a {
    color: yellow;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 20px;
    display: inline-block;
    transition: 0.3s;
}

.navbar a:hover {
    color: #03451f;
    background-color: yellow;
    border-radius: 5px;
}

h1, h2 {
    text-shadow: 0 0 10px white, 0 0 20px white;
    margin-top: 20px;
}

.container {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.logo {
    width: 50%;
    max-width: 150px;
    height: auto;
    margin-top: 20px; /* Pushes logo slightly down */
    filter: drop-shadow(0 0 10px yellow);
}

.btn {
    display: inline-block;
    background-color: white;
    color: #03451f;
    border: 2px solid yellow;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    margin: 20px 0;
}

.btn:hover {
    background-color: yellow;
    color: #03451f;
}

.footer {
    width: 100%;
    padding: 20px 0;
    background-color: black;
    text-align: center;
    position: relative;
    bottom: 0;
    color: yellow;
}

.footer a {
    color: yellow !important;
    text-decoration: none;
}

.footer p {
    margin: 5px 0;
    color: white;
}
