/*General styles and typography*/
html,body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
body{
    font: 100% Roboto, sans-serif;
}
h1{
    font-size: 3em;
    line-height: 1em;
    font-weight: 100;
    color: inherit;
    margin: 0.4em 0;
}
h2{
    font-size: 2em;
    line-height: 1em;
    font-weight: 100;
    text-align: center;
    color: rgba(0,0,0,0.8);
}
a{
    color: inherit;
}
.round{
    display: inline-block;
    height: 1em;
    width: 1em;
    font-size: 15em;
    line-height: 0.9em;
    text-align: center;
    background: rgba(255,255,255,0.6);
    border-radius: 10em;
    color: rgba(0,0,0,0.8);
}
.bottom{
    margin-top: 1.75em;
}

/*OCD windows*/
.ocd{
    width: 100%;
    height: 100%;
    position: absolute;
    text-align: center;
    color: rgba(255,255,255,0.8);
}
.ocd:nth-of-type(1){
    background: lightblue;
    top: 0;
}
.ocd:nth-of-type(2){
    background: grey;
    top: 100%;
}
.ocd:nth-of-type(3){
    background: orange;
    top: 200%;
}
.ocd:nth-of-type(4){
    background: moccasin;
    top: 300%;
}
.ocd:nth-of-type(5){
    background: crimson;
    top: 400%;
}
footer{
    position: absolute;
    top: 500%;
    width: 100%;
    padding: 2em 0;
    font-size: 1.5em;
    text-align: center;
}

/* Just some media queries */

@media screen and (min-width: 30em){
    h1{
        font-size: 5em;
    }
    h2{
        font-size: 3em;
    }
    .round{
        font-size: 20em;
    }
}
@media screen and (min-width: 45em){
    h1{
        font-size: 8em;
    }
    h2{
        font-size: 4.5em;
    }
}