.contact {
    width: 100%;
    padding: 5em 1em;
    background: white;
    border-top: solid rgb(255, 0, 100) .3em;
    border-bottom: solid rgb(255, 0, 100) .3em;
}

.contact #form {
    width: 70em;
    margin: auto;
}

.contact h1 {
    font-size: 2.4em;
    text-align: center;
    margin-top: 0;
    margin-bottom: 2em;
}

.contact label {
    display: inline-block;
    vertical-align: top;
    margin-top: 0.55em;
    margin-right: 1em;
    width: 5em;
    text-align: right;
}

.contact p {
    margin: 3em auto;
    font-size: 1.2em;
}

.contact .form {
    margin: 2em auto;
    font-size: 1.2em;
}

.contact .send {
    display: none;
    margin: 2em auto;
    font-size: 1.2em;
}

.contact input[type="text"], input[type="email"] {
    width: 30em;
    max-width: 30em;
    min-width: 30em;
    height: 2em;
}

.contact textarea {
    width: 30em;
    max-width: 30em;
    min-width: 30em;
    min-height: 10em;
    filter: drop-shadow(0.2em 0.2em 0.2em gray);
}

.contact .box {
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    border: solid 0.05em rgb(75, 75, 75);
    font-size: 1.2em;
    font-family: sans-serif;
    border-radius: 0.3em;
    -moz-border-radius: 0.3em;
    -webkit-border-radius: 0.3em;
    filter: drop-shadow(0.2em 0.2em 0.2em gray);
}

.contact input:focus, .contact textarea:focus {
    outline: none;
    border: solid 0.05em rgb(255, 25, 75);
    border-radius: 0.3em;
    -moz-border-radius: 0.3em;
    -webkit-border-radius: 0.3em;
}

.contact input[type="submit"] {
    width: 15em;
    height: 3em;
    cursor: pointer;
    background-color: rgb(255, 25, 75);
    border: none;
    font-family: sans-serif;
    border-radius: 0.3em;
    -moz-border-radius: 0.3em;
    -webkit-border-radius: 0.3em;
    font-size: 1.2em;
    filter: drop-shadow(0.3em 0.3em 0.2em gray);
}

.contact input[type="submit"]:focus {
    border: solid 0.05em black;
}