@import url('https://fonts.googleapis.com/css?family=Spectral+SC');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css');

body{
    font-family: 'Spectral SC', serif;
    font-size: 30px;
    background-color: #7E060D;
    margin: 0;
    padding: 0;
}

h1{
    margin: 0;
    font-size: 60px;
}

li{
    list-style-type: square;
    margin: 20px 0;
}


header{
}

content{
    text-align: center;
    background: rgba(255,255,255,0.7);
}

content > div {
}

footer{
    bottom: 0;
    display: block;
    position: fixed;
    padding: 30px 0;
    width: 100%;
}

footer.opaque{
    background: rgba(255,255,255,0.8);
    box-shadow: rgba(255,255,255,0.8) 0 -30px 30px;
}

@media (max-width: 900px){
    h1{
        font-size: 50px;
    }
    header{
        position: relative;
        clear: both;
        width: 100%;
        float: none;
    }
    .menu a{
        display: inline-block;
        float: left;
    }

    content{
        float: none;
    }

    footer{
        display: block;
        position: relative;
    }
}

#__nuxt{
    opacity: 1;
    transition: all 2s ease-in;
}

#__nuxt[server-rendered]{
    opacity: 0;
}
