.contact-content{
    width:100%;
    margin-top: 75px;
    height:calc(100vh - 75px);
    background-color: rgb(249, 245, 240);
    display:flex;
    align-items: center;
    justify-content:space-evenly;
    padding-left: 2rem;
}

.contact-content h2{
    padding-top: 2rem;
    font-size: 2rem;
    color: rgb(105, 75, 97);
}

.contact-content img{
    width: clamp(8rem, 25vw, 50rem);
}

body{
    font-family: 'Poiret One';
}

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

.contact-left hr{
    border:none;
    height:2px;
    background-color: rgb(209, 160, 160);
    border-radius: 10px;
    margin-bottom: 10px;
}

.contact-inputs{
    width:clamp(12.5rem, 25vw, 50rem);
    height:50px;
    border:none;
    outline:none;
    padding-left:25px;
    border-radius:10px;
}

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

.contact-inputs:focus{
    border:2px solid rgb(209, 160, 160);
}

.contact-inputs::placeholder{
    color:rgb(170, 170, 170);
}

.contact-left button{
    font-size: 17px;
    border-radius: 20px;
    padding:5px 10px;
    border: 1.5px solid rgb(105, 75, 97);
    background-color: rgb(255, 244, 244);
}

.contact-content button:hover{
    transform: scale(1.1);
    background-color: rgb(238, 201, 201);
    border: 2px solid rgb(76, 54, 70);
}

.contact-content button:active{
    background-color: rgb(181, 138, 138);
    border: 2px solid rgb(76, 54, 70);
}