body {
    background-image: linear-gradient(to right, black, forestgreen);
    padding: 0px;
    margin: 0px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


#navbar {
    display: flex;
    justify-content: space-evenly;
    color: beige;
    background-color: darkgreen;
    padding: 30px;
}

img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}


a {
    text-decoration: none;
    color: beige;
    transition: color 0.3s ease-in;
}

a:hover {
    color: rgb(156, 209, 156);
}

.section1 {
    font-size: large;
    margin-left: 50px;
    margin-top: 50px;
    text-align: center;
}

.section1 h4 {
    color: rgb(156, 255, 156);
    font-family: monospace;
}

.section1 h1 {
    color: white;
}

.section1 p {
    color: rgba(200,235,200);
}

.boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px;
}

.box {
    background-color: rgba(255, 255, 255, 0.1);
    color: beige;
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}

.box:hover {
    transform: scale(1.05);
    background-color: rgb(1, 94, 49);
}

.box h2 {
    margin-top: 0;
    color: lightgreen;
}

footer {
    background-color: darkgreen;
    text-align: center;
    display: grid;
    height: 100%;
}

@media (max-width: 775px) {
    #navbar {
        flex-direction: column;
    }
 }