
@font-face {
    font-family: 'FantasqueSansMono';
    src: url('../font/FantasqueSansMono-Regular.woff') format('woff'),
         url('../font/FantasqueSansMono-Regular.ttf') format('truetype'),
         url('../font/FantasqueSansMono-Regular.svg') format('svg');

    font-weight: normal;
    font-style: normal;

}


body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    font-family: Lato, Roboto, sans-serif;
    background-color: rgba(255, 254, 244, 0.8);
}

code[class*=language-], pre[class*=language-] {
    font-family: 'FantasqueSansMono', Roboto, sans-serif !important;
}

#leftside, #rightside {
    position: absolute;
    top: 50%;
    color: rgba(255, 254, 244, 0.8);
    z-index: 300;
    font-family: 'FantasqueSansMono', Roboto, sans-serif;
}
#leftside {
    left: 20px;
    transform-origin: 10% 0%;
    transform: rotate(-90deg);
    animation: bounceAnim 5s linear infinite;
}
#rightside {
    right: 20px;
    transform-origin: 90% 0%;
    transform: rotate(90deg);
    animation: bounceAnim 5s linear infinite;
}
.link{
    cursor: pointer;

}
.link, .link:visited{
    text-decoration: none;
    color: rgba(255, 254, 244, 0.8);
}
.link:hover{
    text-decoration: none;
    color: rgba(233, 173, 255, 0.8);
}

#topRight {
    position: absolute;
    right: 35px;
    top: 25px;
    line-height: 100px;
    font-size: 1.4em;
    width: 100px;
    height: 100px;
    background: #000;
    color: #fff;
    text-align: center;
    border-radius: 50%;
}
#headline {
    position: absolute;
    width: 100%;
    z-index: 200;
    padding-top: 65vh;
    text-align: center;
    /*color: rgba(233, 173, 255, 0.8);*/
    color: rgba(255, 254, 244, 0.8);
    font-size: 8vw;
    text-shadow: 0px 3px 50px rgba(0, 0, 0, 0.5);
    font-family: 'FantasqueSansMono', Roboto, sans-serif;
}


@keyframes bounceAnim {
    0%, 100% {
        top: 50%;
    }
    50% {
        top: 45%;
    }
}

.code_snippet{
    margin: 0px auto 0px auto;
    width: 100%
}

.content{
    position: relative;
    top: -4em;
    width: 50%;
    margin: 0px auto 50px auto;
    background-color: rgba(255, 254, 244, 0.8);
    padding: 1em 2em;
    height: 95vh;
    overflow: scroll
}