*{
    margin: 0;
    padding: 0;
    
}

body {
    background: white;
}

h1{
    color: greenyellow;
}

nav{
    background-color: #53731F;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul{
    display: flex;
    list-style: none;
    gap: 1rem;
}

a{
    text-decoration: none;
    color: white;
}

a:hover {
    color: black;
}

@media (max-width: 680px) {
    nav{
        flex-direction: column;
        gap: 3rem;
    }

ul{
    flex-direction: column;
    order: 1;
    font-size: 1.5rem;
    gap: 1.5rem;
}
}

h2{
    margin: 20px;
    padding: 20px;
    font-size: 3rem;
    text-align: center;
    color: #fff;
    font-family: Helvetica, sans-serif;

}
.box-area{
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
    align-items: baseline;
}

.single-box{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    
    justify-content: center;
    width: 300px;
    height: auto;
    border-radius: 4px;
    background-color: #3c1064;
    text-align: center;
    margin: 30px;
    padding: 20px;
    transition: .3s;
}



.header-text{
    font-size: 24px;
    font-weight: 500;
    line-height: 48px;
    color: white;
}

.img-text{
    font-family: Poppins;
    padding-top: 20px;
    color: white;
}

.img-text p{
    font-size: 14px;
    font-weight: 400;
    line-height: 40px;
}

.single-box:hover{
    background: #4b6b1a;
    color: white;
}