*{
    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;

}

.container{
    padding: 0 60px;
}


.container .container-wrapper{
    /* margin: 0;
    
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    position: absolute;
    top: 10px;
    left: 20px; */
    display: flex;
    justify-content: center;
    
}
.container-wrapper img {
    height: 600px;
    padding: 0 30px;
}
.contact {
    display: flex;
    padding: 0 30px;
}
.contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 30px;
    
}

h2{
    margin: 20px;
    padding: 20px;
    font-size: 3rem;
    text-align: center;
    color: #53731F;
    font-family: Sans-serif;

}


.contact-input{
    width: 400px;
    height: 50px;
    border: 1px solid #f0f0f0;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: black;
    border-radius: 50px;
}

.contact-input textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
    
}

.contact-input:focus{
    border: 2px solid #3e5e0b;
}

.contact-input::placeholder{
    color: rgb(58, 11, 168);
}

.contact-left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    margin-left: 250px;
    color: white;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg, #4804a1, #722a9c);
    cursor: pointer;
}


