body {
    background-color: rgb(253, 250, 245);
}
.test2{
    height: 110px;
}
.contact {
    display: block;
    text-align: center;
    margin-top: 50px;
}

.contact h1 {
    color: rgb(90, 125, 101);
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
}

.contact p {
    color: rgb(58, 59, 55);
    font-family: Inter, sans-serif;
    line-height: 24px;
    margin-top: 20px;
}

#contactForm {
    background-color: rgb(255, 255, 255);
    padding: 50px;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 20px;
    border: 0.8px solid rgb(230, 227, 218);
    border-radius: 12px;
}

.information {
    display: flex;
    gap: 20px;
}

.information .data-name {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
    gap: 10px;
}

.information label {
    font-size: 14px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    color: rgb(58, 59, 55);
}

.massege .data {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.massege label {
    font-size: 14px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    color: rgb(58, 59, 55);
}

input {
    background-color: rgb(253, 250, 245);
    height: 45px;
    border: 0.8px solid rgb(230, 227, 218);
    border-radius: 4px;

}

textarea {
    background-color: rgb(253, 250, 245);
    height: 300px;
    resize: none;
    border: 0.8px solid rgb(230, 227, 218);
    border-radius: 4px;
}

#submitt {
    background-color: rgb(90, 125, 101);
    color: rgb(255, 255, 255);
    font-family: Inter, sans-serif;
    font-size:14px ;
    font-weight: 700;
    width: 100%;
    height: 50px;
    margin-top: 30px;
    border: none;
    border-radius: 4px;
}