@font-face {
    font-family: traulha;
    src: url(traulha-regular.otf);
    font-weight: 300;
}
@font-face {
    font-family: traulha;
    src: url(traulha-italic.otf);
    font-style: italic;
}

@-ms-keyframes spin { 
        from { 
            -ms-transform: rotate(0deg); 
        } to { 
            -ms-transform: rotate(360deg); 
        }
    }
    @-moz-keyframes spin { 
        from { 
            -moz-transform: rotate(0deg); 
        } to { 
            -moz-transform: rotate(360deg); 
        }
    }
    @-webkit-keyframes spin { 
        from { 
            -webkit-transform: rotate(0deg); 
        } to { 
            -webkit-transform: rotate(360deg); 
        }
    }
    @keyframes spin { 
        from { 
            transform: rotate(0deg); 
        } to { 
            transform: rotate(360deg); 
        }
    }

/**GLOBAL**/

html {
    height: 100%;
    font-size: 14px;
}

.contents {
    height: 100%;
}

.container {
    margin-top: 20px;
}

.logo_2 {
    font-family: 'antique-olive-condensed';
    font-weight: 400;
    font-size: 26px;
    text-align: center;
    margin-bottom: 10px;
}

.logo_2_i {
    font-family: traulha;
    font-style: italic;
    font-size: 24px;
}

article {
    margin-left: 15px;
    margin-right: 15px;
    border-left: 1px solid #292929;
    border-right: 1px solid #292929;
    padding-left: 10px;
    padding-right: 10px;
}

a {
    color:black;
    text-decoration: none;
}

a:visited {
    color: black;
}

/**ARTICLE LOCALS**/

.headline {
    display: block;
    margin: 5vh auto 0;
}

.circular {
    max-width: 90%;
    display: block;
    margin: 50px auto;
}

.arrow-left {
    float: left;
    transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
}

.arrow-right {
    float: right;
}

/*TYPE*/

.ingress {
    font-family: 'antique-olive';
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 15px;
}

.byline {
    font-family: 'antique-olive';
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 15px;
}

.byline em {
    font-style: italic;
}

.body {
    font-family: 'ff-spinoza-web-pro';
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 15px;
}

h1 {
    font-family: traulha;
    font-size: 56px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 50px;
}

/*Layout specifics*/

.container-contents {
    margin-top: 25vh;
    padding-bottom: 17vh;
}

.coin {
    display: block;
    width: 100%;
    height: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
} 

.section {
    width: 65%;
    height: auto;
    border-radius: 50%;
    margin: 0 auto;
}

.main-section {
    position: relative;
}

.section ul {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section ul li {
    font-family: 'antique-olive';
    font-weight: 400;
    font-size: 0.85rem;
    line-height: 0.9rem;
    margin-bottom: 12px;
    text-align: center;   
    color: white;
} 

.section ul li:last-child {
    margin-bottom: 0;
}

.digr {
    font-family: 'antique-olive';
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 30px;
}

.pullquote {
    width: 100vw;
    height: 150%;
    margin: 50px auto;
}

.sectionimg {
    width: 100%;
    height: auto;
    border-radius: 50%;

    -webkit-animation-name: spin;
    -webkit-animation-duration: 10000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: spin;
    -moz-animation-duration: 10000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;

    -ms-animation-name: spin;
    -ms-animation-duration: 10000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    animation-name: spin;
    animation-duration: 10000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

h3 {
    font-family: traulha;
    text-transform: uppercase;
    letter-spacing: 1%;
    font-size: 36px;
    line-height: 48px;
    text-align: center;
    margin-bottom: 15px;
}

i {
    font-family: 'antique-olive';
    font-style: italic;
    font-weight: 300;
}

.enter {
    font-family: 'antique-olive';
/*    text-transform: uppercase;*/
    font-size: 21px;
    text-align: center;
    color: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%)  rotateZ(-15deg);
}

.toc {
    position: fixed;
    top: 0;
    left: 0;
    
    width: 100%;
    height: 100%;
    display: block;
    z-index: -999;
}

.bg-text-1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 33vh;
    display: block;
    z-index: -999;
} .bg-text-2 {
    position: fixed;
    top: 33vh;
    left: 0;
    width: 100vw;
    height: 33vh;
    display: block;
    z-index: -999;
} .bg-text-3 {
    position: fixed;
    top: 66vh;
    left: 0;
    width: 100vw;
    height: 34vh;
    display: block;
    z-index: -999;
}

.superlink {
    background: #000;
    z-index: 9999;
    position: fixed;
    top: 200%;
    left: 200%;
    transform: translateX(-50%);
    width: 10vw;
    height: 10vw;
    border-radius: 50%;
} @media screen and (max-width: 650px) {
    .superlink {
        top: 200%;
        width: 10vh;
        height: 10vh;
    }
}

/*MEDIA QUERIES*/

@media screen and  (min-width: 498px) {
    .container-contents {
        margin-top: 18vh;
        
    }
    .section {
        width: 40%;
    }
    .section ul li {
        font-size: 0.7rem;
        line-height: 0.9rem;
    }
    article {
        width: 65%;
        margin: 0 auto;
    }
    .headline {
        width: 65%;
        margin: 0 auto;
    }
    footer {
        width: 65%;
        margin: 0 auto;
    }
    .coin {
        width: 30%;
        height: auto;
    }
}

@media screen and  (min-width: 950px) {
    .container-contents {
        margin-top: 18vh;
        
    }
    .section {
        width: 30%;
    }
    .section ul li {
        font-size: 1rem;
        line-height: 1.3rem;
    }
    article {
        width: 45%;
        margin: 0 auto;
    }
    .headline {
        width: 45%;
        margin: 0 auto;
    }
    footer {
        width: 45%;
        margin: 0 auto;
    }
    .coin {
        width: 30%;
        height: auto;
    }
}