.contact-container{
    display: grid;
    justify-content: center;
    font-size: 24px;
    font-family: "Roboto";
    margin-top: 64px;
    margin-bottom: 64px;
}
.contact{
    width: 500px;
    height: 600px;
    background-color: #BCB8B1;
    border-radius: 12px;
    animation: fade-in-up linear;
    animation-timeline: view();
    animation-range-start: 0%;
    animation-range-end: 30%;
    animation-timing-function: ease-in-out;
}

.contact-header{
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    display: grid;
    justify-content: center;
}
.contact-header .upper-text{
    font-weight: bolder;
    font-size: 20px;
    font-family: "Syne";
}

.typewriter-contact{
    width: 280px;
    height: 40px;
    border-radius: 12px;
    background-color: #F4F3EE;
    margin: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4%;
}
.contact-main{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.contact-main label{
    text-align: center;
    font-weight: bold;
}
.contact-main input {
    margin: 0 auto;
    border: none;
    border-radius: 12px;
}
.email-input{
    height: 30px;
    width: 200px;
}

.message-area{
    height: 200px;
    width: 240px;
    vertical-align: top;
    line-height: 1.2;
    resize: none;
    border-radius: 12px;
    margin: 0 auto;
    padding: 10px;
    font-family: inherit;
    font-size: 16px;
    font-weight: inherit;
}


.contact-footer{
    margin-top: 4%;
    display: grid;
    justify-content: center;
}
.contact-footer button{
    border: none;
    border: 1px solid #596168;
    background-color: #F4F3EE;
    font-family: "Syne";
    font-weight: bolder;
    font-size: 20px;
    width: 120px;
    height: 60px;
}
.contact-footer button:hover{
    background-color: #596168; 
    color: #F4F3EE;
}
.contact-footer button:active{
    opacity: 0.7;
}

@keyframes fade-in-up {
    from{
        scale: 0.8;
        opacity: 0;
        transform: translateY(-7%);
    }
    to{
        scale: 1;
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width:600px){
    .contact-container{
        font-size: 16px;
        font-family: "Roboto";
        margin-top: 32px;
        margin-bottom: 32px;
    }

    .contact{
        width: 350px;
        height: 500px;
    }
    .contact-header{
        margin-bottom: 10px;
    }
    .contact-header .upper-text{
        font-weight: bolder;
        font-size: 16px;
    }
    .typewriter-contact{
        width: 200px;
        height: 30px;
    }
    .message-area{
        height: 180px;
        width: 240px;
        font-size: 14px;
    }

    .contact-footer button{
        color: inherit;
        text-decoration: none;
        width: 120px;
        height: 45px;
    }

}