body {
    margin: 0;
    padding: 0;
    background-image: linear-gradient(#DAE3E5, #507DBC);
    height: 100%;
}

.grid {
    display: grid;
    grid-template-rows: repeat(12, 1fr);
    justify-content: center;
}

.animation{
    width: 100%;
    height: 100%;
}

img {
    opacity: 0;
    height: 150px;
    width: 150px;
    position: relative;
    top: -40px;
    display: block;
    margin: auto;
    animation: revealLabel 7s linear 0s forwards;
    animation-delay: 4s;
}

span {
    color: rgba(200, 200, 20, 0);
    position: relative;
    font-family: sans-serif;
}

p {
    font-weight: bold;
    font-size: 9vw;
    padding: 0;
    text-align: center;
    position: relative;
}

.subTitle {
    font-size: 6vw;
    color: rgba(51, 51, 51, 0);
    top: -35px;
    -webkit-animation: getFocus 4.8s linear 0s forwards;
    animation: getFocus 4.8s linear 0s forwards;
    animation-delay: 3s;
}

form {
    margin: 0 auto;
    color: rgba(51, 51, 51, 0);
    padding: 2vw;
    width: 60vw;
}

.formDiv {
    font-size: 5vw;
    width: 100%;
    display: grid;
}

.gridItem {
    color: white;
}

.gridItem3{
    margin-top: 22px;
    display: grid;
    justify-content: end;
    opacity: 0;
    animation: revealLabel 7s linear 0s forwards;
    animation-delay: 6s;
}

input{
    height: 2em;
    font-size: large;
    width: 100%;
    margin: 5px auto;
    background-color: white;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    animation: revealInput 7s linear 0s forwards;
    animation-delay: 6s;
}

label {
    font-size: x-large;
    opacity: 0;
    color: #333333;
    animation: revealLabel 7s linear 0s forwards;
    animation-delay: 6s;
}

.char1{
    font-size: 1.5em;
    top: 0.20em;
    left: 0.05em;
    -webkit-animation: getFocus 4.8s linear 0s forwards;
    animation: getFocus 4.8s linear 0s forwards;
}

.wordArt span:nth-child(n+1):nth-last-child(n+1){
    -webkit-animation: getFocus 3.8s linear 0s forwards;
    animation: getFocus 4.8s linear 0s forwards;
    -webkit-animation-delay: .5s;
    animation-delay: 2s;
}

/*.char8{
    -webkit-animation: getFocus 3.8s linear 0s forwards;
    animation: getFocus 4.8s linear 0s forwards;
    animation-delay: 4s;
}

.char9{
    -webkit-animation: getFocus 3.8s linear 0s forwards;
    animation: getFocus 4.8s linear 0s forwards;
    animation-delay: 4.5s;
}

.char10{
    -webkit-animation: getFocus 3.8s linear 0s forwards;
    animation: getFocus 4.8s linear 0s forwards;
    animation-delay: 5.0s;
}

.char11{
    -webkit-animation: getFocus 3.8s linear 0s forwards;
    animation: getFocus 4.8s linear 0s forwards;
    animation-delay: 5.5s;
}

.char12{
    -webkit-animation: getFocus 3.8s linear 0s forwards;
    animation: getFocus 4.8s linear 0s forwards;
    animation-delay: 6s;
}

.char13{
    -webkit-animation: getFocus 3.8s linear 0s forwards;
    animation: getFocus 4.8s linear 0s forwards;
    animation-delay: 6.5s;
}

.char14{
    -webkit-animation: getFocus 3.8s linear 0s forwards;
    animation: getFocus 4.8s linear 0s forwards;
    animation-delay: 7s;
}

.char15{
    -webkit-animation: getFocus 3.8s linear 0s forwards;
    animation: getFocus 4.8s linear 0s forwards;
    animation-delay: 7.5s;
}*/

.char16{
    font-size: 1.5em;
    top: 0.185em;
    -webkit-animation: getFocus 3.8s linear 0s forwards;
    animation: getFocus 4.8s linear 0s forwards;
}

@-webkit-keyframes revealLabel {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        animation-fill-mode: forwards;
    }
}

@keyframes revealLabel {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        animation-fill-mode: forwards;
    }
}

@-webkit-keyframes reveal {
    from {
        color: rgba(51, 51, 51, 0);
        border-color: black;
    }
    to {
        border-color: antiquewhite;
        color: rgba(51, 51, 51, 1);
        animation-fill-mode: forwards;
    }
}

@keyframes reveal {
    from {
        color: rgba(51, 51, 51, 0);
        border-color: black;
    }
    to {color: rgba(51, 51, 51, 1);
        border-color: antiquewhite;
        color: rgba(51, 51, 51, 1);
        animation-fill-mode: forwards;
    }
}

@-webkit-keyframes getFocus {
    from {
        color: rgba(200, 200, 25, 0);
        text-shadow: 0 0 1em rgb(218, 227, 229);
    }
    to {
        color: rgba(51, 51, 51, 1);
        text-shadow: 0 0 0.1em rgb(80, 125, 188);
        animation-fill-mode: forwards;
    }
}

@keyframes getFocus {
    from {
        color: rgba(200, 200, 25, 0);
        text-shadow: 0 0 1em rgb(218, 227, 229);
    }
    to {
        color: rgba(51, 51, 51, 1);
        text-shadow: 0 0 0.1em rgb(80, 125, 188);
        animation-fill-mode: forwards;
    }
}

@-webkit-keyframes revealInput {
    from {
        background-color: black;
        border-style: none;
    }
    to {
        color: rgba(51, 51, 51, 1);
        background-color: white;
        box-shadow: 0px 0px 5px 0px #507dbc;
        animation-fill-mode: forwards;
    }
}

@keyframes revealInput {
    from {
        background-color: rgba(51, 51, 51, 0);
        border-style: none;
    }
    to {
        color: rgba(51, 51, 51, 1);
        background-color: white;
        box-shadow: 0px 0px 5px 0px #507dbc;
        animation-fill-mode: forwards;
    }
}

