body {
    background-color: rgb(32, 32, 32);
    color: white;
    margin: 0px;
    font-family: Nunito, sans-serif;
}

h1 {
    font-weight: 100;
    font-size: 55px;
}

input, textarea {
    width: calc(100% - 10px);
    margin: 5px;
    padding: 4px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.151);
    resize: none;
    font-family: Helvetica, sans-serif;
}

button {
    width: calc(100% - 10px);
    margin: 5px;
    padding: 8px;
    border: none;
    background-color: rgba(32, 32, 32, 0.726);
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: rgba(32, 32, 32, 0.644);
}

button:focus {
    outline: none;
}

button:active {
    transform: translateY(2px);
}

.flash {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    background-color: rgb(8, 89, 171);
    color: white;
    z-index: 200;
    animation-name: faseOut;
    animation-duration: 3.5s;
    animation-timing-function: ease-in-out;
    opacity: 0;
}

.flash h5 {
    margin: 7px;
}

.emailLink {
    color: rgb(8, 89, 171);
    cursor: pointer;
}

.formModal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 10px;
    color: rgb(121, 121, 121);
    text-align: center;
    border-radius: 4px;
    z-index: 200;
}

.closed {
    display: none;
}

.open {
    display: block;
}

.fase {
    animation-name: faseIn;
    animation-duration: 0.4s;
    animation-timing-function: ease-in-out;
}

#backDrop {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.733);
    z-index: 100;
}

#logo {
    position: absolute;
    top: 0vh;
    max-height: 50vh;
}

#info {
    position: absolute;
    top: 50vh;
    width: 100%;
    text-align: center;
}

@media only screen and (max-width: 680px) {
    #logo {
        width: 100%;
        max-height: unset;
        top: 0vw;
    }

    #info {
        top: 53vh;
    }

    .formModal {
        width: 90%;
    }

    h1 {
        font-size: 35px;
    }
}

@keyframes faseIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@keyframes faseOut {
    0% {opacity: 1; display: block;}
    75% {opacity: 1; display: block;}
    100% {opacity: 0; display: none;}
}

