@font-face {
    font-family:"Neutra Text";
    src:url("Neutra-Text.woff2") format("woff2"),
    url("Neutra-Text.woff") format("woff"),
    url("Neutra-Text.otf") format("opentype");
    font-style:normal;font-weight:600;
}

body,html{
    font-family: quiche-sans,sans-serif;
    padding:0;
    margin:0;
    font-size: 1.1rem;
    height: 100%;
    background: #000;
    color:#fff;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.context{
    margin-top:auto;
    position: relative;
    width:70vmin;
    max-width: 650px;
}

.context img{
    width: 100%;
    display: block;
    -webkit-animation:spin 8s linear infinite;
    -moz-animation:spin 8s linear infinite;
    animation:spin 8s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

h1{
    font-family:"Neutra Text",sans-serif;
    font-weight: 600;
    display: block;
    text-align: center;
    font-size: 4vmin;
    position: absolute;
    top:50%;
    width: 100%;
    transform: translateY(-50%);
    margin:0;
    padding:0;
    text-transform: uppercase;
    line-height: 1em;

}

footer{
    margin-top:auto;
    text-align: center;
    font-size: 2.6vmin;
    font-weight: 200;
}
.social{
    font-size: 1.2em;
}
.social a{
    color:#fff;
    text-decoration:none;
    text-transform: uppercase;
    font-size: 1em;
}
p{
    margin-top:0.5em;
}

@media (min-height: 650px) and (min-width: 650px){
    footer, h1 {
        font-size: 26px;
    }
    footer{
        font-size: 18px;
    }

}
