html,body{
    padding:0;
    margin:0;
    overflow:hidden;
}
html{
    background-image:url("paint.jpg");
    background-repeat: no-repeat;
    background-size:cover;
    width:100%;
    height:100%;
}
@keyframes paint{
    0%{
        opacity:0;
    }
    50%{
        opacity:1;
    }
    100%{
        opacity:0;
    }
}
#overlay{
    position:fixed;
    width:100%;
    height:100%;
    animation-name: paint;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    background-image:url("paint.jpg");
    background-repeat: no-repeat;
    background-size:cover;
    z-index:-1;
    transform:rotate(180deg);
}
#container{
    padding:30px;
}
h1{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size:8vw;
    letter-spacing: -0.03em;
    font-weight:400;
    margin:0px;
    margin-top:-20px;
    display:inline-block;
}
h3{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size:20pt;
    letter-spacing: -0.03em;
    font-weight:400;
    margin:0px;
    display:inline-block;
}
#time{
    font-weight:600;
    font-size:40pt;
}
#credit{
    display:inline-block;
    position:fixed;
    bottom:30px;
    background-color:rgba(0, 0, 0, 0.473);
    padding:5px;
    color:white;
    font-size:15pt;
}
hr{
    border:none;
    border-bottom:2px solid black;
    width:70%;
    margin:0;
}
@media screen and (max-width:700px){
    h1{
        font-size:13vw;
    }
}
