.navbar ul{
    list-style: none;
    background-color: #235347;
    padding: 5px;
    margin: 22px;
    overflow: hidden;
    text-align: center;
    
    
    
}
.navbar a{
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
    width:100px;
    text-align: center;
    
}
.navbar a:hover{
    background-color: darkgray;
}
.navbar li{
    display: inline-block;
}

body{
    background: linear-gradient(#eed9cf, #f1e9d2);
}


.contact-container{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    
}

.contact-inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 50px;
    
}

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

.contact-inputs:focus{
    border: 2px solid #ff994f;
}

.contact-inputs::placeholder{
    color: #a9a9a9;
}

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



