html{
    background: rgb(25, 27, 31);
    background: linear-gradient(0deg, rgba(25,27,31,1) 0%, rgba(56,60,68,1) 60%);
    width: 100%;
    height: 100%;
    margin: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
body{
    display: flex;
    flex-direction: column;
    margin: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 100%;
}
#page-container{
    position: relative;
    height: 100%;
    min-height: 97vh;
}
#heading{
    text-align: center;
    color: rgb(248, 248, 242);
    text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black, 0 0 5px black;
    font-size: xx-large;
    font-family: 'caviar_dreamsbold', normal, normal;
    padding-bottom: 2.2rem;
    animation: fadeIn ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
#heading h1{
    margin-top: 40px;
}
#page-container footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2.2rem;
    margin-top: auto;
    text-align: center;
    color: rgb(248, 248, 242);
    text-shadow: 0 0 10px black, 0 0 10px black, 0 0 10px black, 0 0 10px black;
    font-size: large;
    font-family: 'caviar_dreamsbold', normal, normal;
}
#gh{
    opacity: 0%;
    box-shadow: 0 0 3px white, 0 0 3px white, 0 0 3px white, 0 0 3px white;
    border-radius: 240px;
    width: 40px;
    height: 40px;
    animation: fadeIn ease 2s 1.2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
#winmine{
    text-decoration: none;
    color: white;
}
.clouds{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 90%;
    display: flex;

    background: transparent url(res/cloud.png) repeat top center;
    z-index: 0;
    opacity: .1;
    animation: clouds 200s linear infinite;
}


/*
    Animations
*/
@keyframes fadeIn{
    0%{
        opacity: 0%;
    }
    100%{
        opacity: 100%;
    }
}
@keyframes clouds{
    from{ background-position: 0 0; }
    to{ background-position: 10000px 0; }
}
