@keyframes contentSlideDown{
    0%{
        opacity: 0;
        transform: translateY(-100%);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contentSlideUp{
    0%{
        opacity: 0;
        transform: translateY(100%);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}


.container-title{
    animation:contentSlideDown 1s ease-in-out;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top:2%;
    width: 100%;
    height: 100%;
    color:white;
}

.container-title h1{
    display:inline-block;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top:1rem;
}


.contact-form{
    animation:contentSlideUp 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4.2rem;
}

.contact-form form{
    position: relative;
    width:600px;
}

form input,
form textarea{
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: none;
    outline:none;
    background-color: #f5f5f5;
    color: #333;
    font-size: 1.1rem;
    box-shadow: 0 0 5px #333;
    margin-bottom: 20px;
    border-radius: 8px;
}

form .send-btn{
    display:inline-block;
    padding: 11px 26px;
    transition: all 0.3s ease-in-out;
    width:30%;
}

form .send-btn:hover{
    background:gold;
    cursor: pointer;
}
