.container-contacts{
    min-height: 100vh;
    text-align: center;
   
    display: flex ;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.container-contacts>h1{
    font-family: 'Just Another Hand';
    font-size: 4em;
}
.container-redirect-forms{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}
a.card-form{
    display: block;
    width: 45%;
    margin: 2%;
    background-color: white;
    border-radius: 20px;
    min-height: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-decoration: none !important;
}
.icon-contact-form{
    width: 8em;
}
@media(max-width: 450px){
    .container-redirect-forms{
        flex-direction: column;
    }
    a.card-form{
        width: 100%;
    }
    .container-contacts{
        position: relative;
        top: 8em;
    }
}