body{
    margin: 0 auto;
}

.contact-form{
    display: flow-root;
    margin: 0 auto;
    width: 35em;
    padding: 20px;
    border: 2px solid white;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 25px;
    margin-bottom: 30vw;
}

.input{
    margin-bottom: 5%;
    border: 0.1vw solid white;
    -moz-border-radius: 1em;
    -webkit-border-radius: 1em;
    border-radius: 10px;
    font-family: 'Courier New', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: 14px;
    width: 10vw;
    width: 75%;
    float: inline-start
}

#contact-email{
    max-width: 35em;
    width: 100%;
    padding: 1em;
}

#contact-subject{
    max-width: 20em;
    max-height: 1em;
    padding: 1em;
}

#contact-name{
   max-width: 30em;
   width: 100%;
   padding: 1em;
}

#contact-text{
    max-width: 38em;
    height: 15em;
    width: 100%;
    padding: 1em;

 }

.submit{
    width: 10em;
    color: whitesmoke;
    font-family: 'Courier New', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    letter-spacing: 0.4vw;
    transition: 0.2s ease-in-out;
    border: 2px solid white;
    -moz-border-radius: 5em;
    -webkit-border-radius: 5em;
    border-radius: 1em;
    padding: 15px;
    background: transparent;
    text-transform: uppercase;
    font-weight: 600;
}


.submit:hover{
    transform: translateY(-4px);
    background: linear-gradient(-45deg, #d86440, #aa3160, #2594bd, rgb(4, 23, 58));
    background-size: 1000% 100%;
    animation: gradient 5s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media only screen and (max-width: 700px){


    .contact-form{
        display: flow-root;
        margin: 0 auto;
        width: 70vw;
        padding: 20px;
        border: 2px solid white;
        -moz-border-radius: 20px;
        -webkit-border-radius: 20px;
        border-radius: 25px;
        margin-bottom: 30vw;
    }

    #contact-email{
        width: 90%;
        padding: 1em;
    }
    
    #contact-subject{
        width: 90%;
        max-height: 1em;
        padding: 1em;
    }
    
    #contact-name{
       width: 90%;
       padding: 1em;
    }
    
    #contact-text{
        height: 15em;
        width: 90%;
        padding: 1em;
     }

}