@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: "Be Vietnam Pro", sans-serif;
}

.contact_body {
    background-color: #efefef;
    font-family: "Be Vietnam Pro", sans-serif;
}

.contact_box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
}

form {
    margin: 35px;
}

.input_field {
    width: 100%;
    height: 40px;
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border: 2px solid #777;
    border-radius: 14px;
    outline: none;
}

.textarea-field {
    height: 150px;
    padding-top: 10px;
}

.send_message {
    border-radius: 20px;
    color: #fff;
    margin-top: 18px;
    padding: 10px;
    background-color: #47c35a;
    font-size: 12px;
    border: none;
    cursor: pointer;
    display: flex;

}

.contact_me {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 600;
    font-size: 3em;
    color: #161c2d;
    text-align: center;
    padding-top: 3%;
    padding-bottom: 2%;
}