body {
    background-color: #124018;
    background-image: -webkit-linear-gradient(135deg, #7fb43c, #124018);
    background-image: -moz-linear-gradient(45deg, #7fb43c, #124018);
    background-image: -ms-linear-gradient(45deg, #7fb43c 0, #124018 100%);
    background-image: -o-linear-gradient(45deg, #7fb43c, #124018);
    background-image: linear-gradient(135deg, #7fb43c, #124018);
    text-align: center;
    margin: 0;
    overflow: hidden;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden; /* Prevent scrolling */
    background: linear-gradient(-45deg, #7fb43c, #4a9e3f, #286f27, #124018);
    background-size: 400% 400%;
    animation: waveAnimation 6s infinite alternate ease-in-out;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden; /* Prevent scrolling */
    background: linear-gradient(-45deg, #7fb43c, #4a9e3f, #286f27, #124018);
    background-size: 400% 400%;
    animation: waveAnimation 6s infinite alternate ease-in-out;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden; /* Prevent scrolling */
    font-family: 'Roboto', sans-serif; /* Apply Roboto font */
    background: linear-gradient(-45deg, #7fb43c, #4a9e3f, #286f27, #124018);
    background-size: 400% 400%;
    animation: waveAnimation 6s infinite alternate ease-in-out;
}

/* Ensure h1 is fully centered */
h1 {
    font-family: 'Roboto', sans-serif; /* Apply Roboto font */
    font-weight: 700; /* Bold weight for the heading */
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    font-size: 3rem;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) { h1 { font-size: 2rem; } }
@media (max-width: 480px) { h1 { font-size: 1.5rem; } }

/* Footer adjustments for mobile */
footer {
    position: absolute;
    bottom: 5px;
    font-size: 0.8rem; /* Smaller text for mobile */
    color: rgba(255, 255, 255, 0.8);
    width: 100%;
    text-align: center; /* Center footer text */
    font-family: 'Roboto', sans-serif; /* Apply Roboto font */
}

footer a {
    color: white;
    font-weight: 700; /* Bold for the link text */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
