:root::-webkit-scrollbar{
  display: none;
}

:root {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
    margin: 0;
    padding: 0;
    background: black;
    color: white;
  }
/*
  nav {
    -webkit-user-select: none; /* Safari 
    -moz-user-select: none; /* Firefox 
    -ms-user-select: none; /* IE10+/Edge 
    user-select: none; /* Standard 

    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;

    background: black;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: .2em 2em;
    float: right;
  }
  
  nav ul li {
    display: inline-block;
    margin: 0;
    padding: .2em .7em;
  }
  
  nav a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    font-family: Ubuntu;
    font-size: 1.15em;
    font-weight: lighter;
    letter-spacing: 1px;
    transition: .25s ease-in-out;
  }

  .a0{
    color: #ff0100;
  }
  .a1{
    color: #FF00BB;
  }
  .a2{
    color: #8A00FF;
  }
  .a3{
    color: #001BFF;
  }

  .a0:hover{
    color: #00FEFF;
  }
  .a1:hover{
    color: #00FF44;
  }
  .a2:hover{
    color: #75FF00;
  }
  .a3:hover{
    color: #FFF800;
  }
  */

/*
  nav a:hover {
    color: rgb(220, 120, 0);
  }*/
  
  .nav-bg {
    content: '';
    position: absolute;
    display: block;
    top: 0%;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(0, 0, 0, 0.8);
    transition: .45s ease-in-out;
  }
  
  .bg-hidden {
    top: -100%;
    opacity: 0;
  }
  
  .bg-visible {
    top: 0;
    opacity: 1;
  }
  
  h1 {
    text-align: center;
    font-family: Ubuntu;
    letter-spacing: 1px;
  }
  
  .hero {
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */

    position: relative;
    width: 100%;
    height: 1000px;
    background: rgb(50, 50, 50);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 70%, rgb(255, 255, 255)), url(pics/main/mainImage.jpg) no-repeat 50% 60% fixed;
    background-size: 100%;
    overflow: hidden;
    
    color:red;
  }
  
  .hero h1 {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    padding: .3em;
    font-size: 3em;
    font-weight: lighter;
  }
  
  .content-wrapper {
    width: 100%;
    height: 800px;
    
    background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0)), url(pics/main/image2.jpg) no-repeat 100% 20% fixed;
    background-size: 100%;
  }
  
  .content-wrapper h1 {
    margin: 0;
    color: rgb(220, 120, 0);
  }
  
  .content-wrapper p {
    position: relative;
    top: 30%;
    font-family: "Open Sans";
    color: black;
  }