* {
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    height: 200px;
    background: linear-gradient(45deg, #000428 0%, #004e92 100%);
    display: flex;
}

header h1 {
    font-family: 'Orbitron', sans-serif;
    margin-top: 70px;
    color: white;
    text-shadow: 0 0 15px #111111;
}

.form {
    font-family: 'Orbitron', sans-serif;
    padding: 40px;
    font-size: 20px;
    color: white;
    height: auto;
}

label {
    padding: 5px;
    margin-bottom: 5px;
}

.form input {
    color: white;
    padding: 10px;
    margin-bottom: 25px;
}

.form .message {
    height: 150px;
    width: 75%;
    background: none;
    border: 2px solid #004e92;
    color: #004e92;
}

.form .ema {
    width: 40%;
    background: none;
    border: 2px solid #004e92;
    color: #004e92;
}

.form .upload {
    width: 75%;
    border: 2px solid #004e92;
    padding: 10px;
    color: #004e92;
}

.form .button {
    display: inline-block;
    padding: 10px 50px;
    font-size: 20px;
    color: #004e92;
    background: none;
    border: 2px solid #004e92;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-decoration: none;
    transition: .5s all ease;
    animation-name: shadow;
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

@keyframes shadow {
    0% {
        box-shadow: 0 0 0 0;
    }
    100% {
        box-shadow: 0 5px 15px #004e92;
    }
}

.form .button:hover {
    background: #004e92;
    color: white;
    text-decoration: none;
}

.form .banner {
    width: 600px;
    height: 450px;
    margin-right: 10px;
    padding: 20px;
}

footer {
    font-family: 'Orbitron', sans-serif;
    padding: 25px;
    height: auto;
    background: linear-gradient(45deg, #000428 0%, #004e92 100%);
    color: white;
}

footer p {
    font-size: 40px;
}

footer a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    letter-spacing: 3px;
    transition: .5s all ease;
}

footer a:hover {
    text-decoration: none;
    color: #0a0a0a;
}