@import 'https://fonts.googleapis.com/css?family=Inconsolata';

@font-face {
    font-family: utonium;
    src: url(https://dl.dropbox.com/s/i1ca9p2b9cwhzbg/Utonium.otf);
}


::selection {
    color: white;
    background-color: #091413;
}

.title::selection {
    color: #091413;
    background-color: transparent;
}

html,
body {
    height: 100%;
}

body {
    background-image: radial-gradient(#7196A2, #091413);
    font: 13px 'Inconsolata', Helvetica, sans-serif;
    padding-top: 150px;
    margin: auto;
}

.overallcontainer {
    cursor: url('https://i.imgur.com/TM7HYms.png'), auto;	
    animation: .3s ease-out 0s 1 slidein;
}

@keyframes slidein {
  0% {
    transform: translateY(-30%);opacity: 0%;
  }
  50% {
      opacity: 20%;
  }
  100% {
    transform: translateY(0);
  }
}

.maincontainer a {
    font-weight: 900;
    color: #091413;
    transition: all .3s linear 0s;
}

.maincontainer a:hover {
    color: #aaca99;
}


.title {
    font-size: 100px;
    color: white;
    font-family: utonium;
    text-shadow: 0px 0px 10px white;
    text-align: center;
    position: absolute;
    width: 99%;
    top: -120px;
}


.box {
    position: relative;
    margin: 0 auto;
    width: 1080px;
}

.sidebar {
    position: absolute;
    background-color: #091413;
    width: 130px;
    padding: 10px;
    border: 1px solid #7EA9A3;
    box-shadow: 0px 0px 5px #7EA9A3;
    min-width: 100px;
}

.left {
    left: 20px;
}

.right {
    right: 20px;
    color: #7EA9A3;
    text-shadow: 0px 0px 10px #7EA9A3;
}


.left a {
    text-align: left;
    display: block;
    text-shadow: 0px 0px 10px #7EA9A3;
    box-shadow: 0px 0px 10px #7EA9A350;
    padding: 6px 6px 6px 8px;
    width: 100px;
    color: #7EA9A3;
    text-decoration: none;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: all .3s linear 0s;
}

.left a:hover {
    text-shadow: 0px 0px 7px #7EA9A3;
    box-shadow: 0px 0px 10px #7EA9A350;
    padding: 6px 6px 6px 8px;
    width: 80px;
    color: #091413;
    background-color: #7EA9A3;
}

.right a {
    color: #7EA9A3;
    text-decoration: none;
}

.right hr {
    color: red;
    border: 1px solid #7EA9A3;
}


.maincontainer {
    width: 65%;
    height: auto;
    border: 2px solid #091413;
    background-color: #7EA9A350;
    margin: auto;
}

.header {
    text-align: left;
    background-color: #091413;
    color: white;
    padding: 5px;
    font-size: 14px;
    font-weight: 900;
}

.text {
    padding: 10px;
}

.blink {
    animation: blinking 1s linear infinite;
}



@keyframes blinking {
    0% {
        opacity: 1;
    }

    49% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

            ::-webkit-scrollbar {
                width: 6px;
                height: 6px;
            }

            ::-webkit-scrollbar-track {
                background: #091413;
            }

            ::-webkit-scrollbar-thumb {
                background: #7EA9A3;
            }

            ::-webkit-scrollbar-thumb:hover {
                background: #7EA9A395;
            }

/********* scanlines **********/

body::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(20, 20, 20, 0) 66%, rgba(0, 0, 0, 0.15) 33%);
    background-size: 100% 5px;
    z-index: 9999;
    pointer-events: none;
    animation: scanlines-anim 1.0s linear infinite;
}

@keyframes scanlines-anim {
    0% {
        background-position: 0px 0px;
    }

    100% {
        background-position: 0px 15px;
    }
}

@media only screen and (orientation: portrait) {
    body::before {
        background-size: 100% 4px;
    }
}
