#contactForm{
    background-color: rgba(40,40,40,1);
}
fieldset{
    /*border-radius: 10px;
    border-style:groove;
    border: solid white 1px;*/
    border: 0;
    text-align: center;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}
.flexContainer{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#form1 input:not(#submit), 
#form1 textarea{ 
    background-color: rgba(40,40,40,1);
    padding: 4px;
    border-radius:3px;
    border: 1px dashed white;
    color: white;
    width:300px;
}

#submit{
    border-radius: 3px;
    color: rgba(40,40,40,1);
    width:200px;
    height: 26px;
    cursor: pointer;
    margin: 0 auto;
    margin: 40px 0px 20px 0px;
    background-color: #fb1;
    font-weight: 600;
}

.formInputs{
    display: block;
    margin: 0 10px;
    font-size: 1.3em;
}

#submit:hover{
    animation: submitAni 0.5s cubic-bezier(.36,.07,.19,.97) both;

}
@keyframes submitAni{
    100% {
            background-color: white;
            color: #fb1;
    }
}

.inputHeader{
    margin: 10px 0 0 0;
    text-align: left;
    color: white;
}

#mailMsg{
    text-align: center;
    padding: 30px 0;
    font-size: 1.9em;
}