body{
    margin: 0;
    padding: 0;
    background:#808080;
    color: black;
}
header{
    width: 100%;
    height: 70px;
    background: #202020;
    color: white;
}
.logo{
    text-align: center;
    margin-top: 15px;
    font-style: oblique;
    letter-spacing: 5px;
}
.come{
    font-size: 7em;
    text-align: center;
    font-family: monospace;
    animation-name: come;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
#timeBox{
    background:teal;
    color: white;
}
@keyframes come{
    0%{
        font-family: monospace;
    }
    25%{
        font-family: verdana;
    }
    50%{
        font-family: cursive;
    }
    75%{
        font-family:sans-serif;
    }
    100%{
        font-family: monospace;
    }    
}
footer{
    width: 100%;
    background: white;
    color: gray;
    padding: 2%;
}
.copy{
    font-family: verdana;
    font-size: 0.9em;
    text-align: center;
    margin-top: 30px;
}