body {
    background: #000000;
    color: #f8f8f8;
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
}



@keyframes headertext {
    from {opacity: 0;}
    to {opacity: 100;}
}


/* navigation */

.banner {
    padding: 35px;
    background-color: #0c0c0ce5;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    position: sticky;
    top: 0;
}

.right {
    font-size: 32px;
    text-align: center;
    float: right;
    margin-right: 20px;
    vertical-align: middle;
    line-height: 67px;
}


/* fucking complicated header LOLOLOL */

header {
    width: 100%;
    height: 800px;
    background: url('images/banner.png');
    background-size: cover;
    background-position: center;
    
}

.textcenter {
    text-align: center;
    margin: 1 auto;
    display: block;
    animation: headertext ease-in-out 1s ;
}

header h2 {
    font-size: 96px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    top: 90px;
}

header h3 {
    font-size: 24px;
    font-weight: 300;
    top: -50px;
}

header button {
    background-color: #0C0C0C;
    border: none;
    border-radius: 5px;
    color: #f8f8f8;
    display: block;
    padding: 13px;
    font-family: Lato;
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    text-align: center;
    margin: 0 auto;
    transition: 0.3s;
}

  
header button:hover {
    background-color: #030303;
    box-shadow: 0 0 0 2px rgb(255, 255, 255);
    color: white;
}


/* some links shit */

a {text-decoration: none;}
a:visited {text-decoration: none; color: rgb(236, 236, 236); }
a:hover { text-decoration: none; color:rgb(165, 165, 165); }
a:focus { text-decoration: none; color:rgb(236, 236, 236); }
a:active { text-decoration: none; color:rgb(236, 236, 236); }

/* width */
::-webkit-scrollbar {
    width: 10px;
}
  
/* Track */
::-webkit-scrollbar-track {
    background: #0C0C0C;
}
  
/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}
  
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}


footer a {
    display: inline-block;
    font-size: 20px;
    font-weight: 300;
    text-transform: lowercase;
    margin-right: 20px;
    text-align: center;
}

footer a:hover {
    -webkit-filter: brightness(1);
    filter: brightness(0.7);
}

footer {
    text-align: center;
    background-color: #0C0C0C;
    padding: 25px;
}