body {
    font-family: 'Roboto', sans-serif;
    color: rgb(236, 236, 236);
    margin: 0;
    padding: 0;
    height: 100%;
    /* polax background */
    background-color: #111111;
    opacity: 1;
    background-image:  radial-gradient(#181818 0.8500000000000001px, transparent 0.8500000000000001px), radial-gradient(#181818 0.8500000000000001px, #111111 0.8500000000000001px);
    background-size: 34px 34px;
    background-position: 0 0,17px 17px;
    /*  */

}

/* fancy hyperlink 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); }

/* ----------- */
/* H E A D E R */
/* ----------- */

header {
    height: 100vh;
}

/* navigation bar */
.navigation-bar {
    margin: 0;
    padding: 0;
    list-style-type: none;
    float: right;
    margin: 20px;
}
.navigation-options {
    display: inline-block;
    margin-right: 20px;
}

/* hi. i'm hosyn*/
.landing-title {
    font-weight: 100;
    font-size: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
    filter: drop-shadow(0px 0px 4px #00000060);
}

/* ----------------- */
/* S C R O L L B A R */
/* ----------------- */

/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #0c0c0c00;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #181818;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(37, 37, 37);
  }