@import url('https://fonts.googleapis.com/css2?family=Kalnia+Glaze:wght@100..700&display=swap');

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: linear-gradient(to right, green, #0fa10f);
    color: lightgray;
    text-shadow: 1.2px 1.2px black;
}

header {
    background-image: linear-gradient(blue, navy);
    color: white;
    padding: 1rem;
    text-align: center;
    position: relative;
}

section {
    background-image: url("wallpaper.webp");
    height: 800px;
    background-size: cover;
}

section h1 {
    font-family: "Kalnia Glaze";
    position: relative;
}

.first {
    top: 13.7rem;
    left: 0px;
}

.second {
    top: 22rem;
    left: 0px;
}

.third {
    top: 35rem;
    left: 0px;
    text-shadow: 1.2px 1.2px grey;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

nav a:hover {
    color: #8ddc16;
    text-shadow: none;
}

.menu-toggle {
    display: none;
    background: none;
    color: white;
    font-size: 1.5rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    cursor: pointer;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

main {
    padding: 2rem;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}

@media (max-width: 600px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #004400;
        margin-top: 1rem;
    }
    .nav-links a {
        margin: 1rem 0;
    }
    .nav-links.show {
        display: flex;
    }
}  