body {
    height: 100%;
    width: 100%;
    margin: 0%;
    overflow: hidden;
}


.center{
    display: block;
    width: 50vw;
    left: 25vw;
    top: 13vh;
    position: absolute;
}

.center{
    opacity: 0.1;
    transition: opacity 1s;
    cursor: pointer;
}

.center:hover{
    opacity: 1;
}

p {
    position: absolute;
    top: -5%;
    width: 100%;
    text-align: center;
    font-family: 'Carter One', cursive;
    color: #a80d0d;
    font-size: 50px;
    cursor: default;
    animation-name: color;
    animation-duration: 3s ;
    animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes color{
    from{
        color: #d6d6cd;
    }

    to {
        color: #a80d0d;
    }
}

p#top{
    top: 5%;
    font-size: 65px;
    opacity: 0;
}

p#top{
    animation-name: on;
    animation-duration: 3s;
    animation-delay: 20s;
}

@keyframes on{
    0% {
        opacity: 0;
    }

    50%{
        opacity: 1;
    }

    100%{
        opacity:0;
    }
}

p#under {
    top: 85%;
    font-size: 40px;
}
