/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */



* {
  box-sizing: border-box;
  margin: 2;
  padding: 2;
}


body {
  background-image: url(https://tvnoise.neocities.org/websitebg1.png); /*FUCK YEAH FIXED BACKGROUNDS*/
  background-size: 100%;
  color: #00FF0D; /*white*/
  font-family: "Courier New", "Consolas", monospace;
  background-position:center;
 
  min-width: 600px;
  
}
  
  
  
  
  
  .navbar {
    background-image: url(https://tvnoise.neocities.org/Blank-Banner.png);
    width: 100%;
  height: 100%;
   background-size: fill;
   background-attachment: fixed;
background-size:100% 45%;
background-position-y: -95px;
      background-repeat: no-repeat;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
    
   
  }
  
  
  
  .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 90px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 50px;
  }
        
  .navbar__logo {
    background-color: #99E7FF;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem; 
  }
  
  
  .fa-gem {
    margin-right: 0.5rem;
  }
  
  
  
  /* VVV  PADDING LEFT CHANGES BUTTON ROW POSITION   VVV */
  .navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
    padding-left: 788px;
  }
  
  .navbar__item {
    height: 90px;
  }
  
  
  
  .navbar__links {
    color: #00FF0D;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
  }
  
  
  
  
  .navbar__btn {
    display: flex;
    justify-content: center;  
    align-items: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
    width: 100%;
  }
  
  
  
  
  .button {
      display: flex;
    justify-content: center;  
    align-items: center;
    text-decoration: none;
    padding:10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    
      outline: none;
    border-radius: 4px;
    background: #F54927;
    color: #00FF0D;
    
  }
  
  
  
  .button:hover {
    background: #4837ff;
    transition: all 0.3s ease;
  }
  
  .navbar__links:hover {
        background: #4837ff;
    transition: all 0.3s ease;
  }

  
  @media screen and (min-width: 800px) and (max-width: 900px) {
    .navbar__container {
      display: flex;
      justify-content: space-between;
      height: 80px;
      z-index: 1;
      width: 100%;
      max-width: 1300px;
      padding: 0;
    }
  }
  
 
  
  .navbar__menu {
    display: -moz-grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    
    transition: all 0.5s ease;
    height: 100%;
    z-index: -1;
  }
  
  
  
  .navbar__menu.active {
    background: #131313;
    top: 100%;
    opacity: 1;
    transition: all 0.5 ease;
  z-index: 99;
  height: 50vh;
  font-size: 1.6rem;
  }
  
  
  
  /* VVV  EDIT LOGO APPEARANCE HERE   VVV */
  #navbar__logo {
    padding-left: 0px;
     display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
    font-size: 3rem;
  }
  
  
  
  .navbar__toggle .bar {
    height:3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out; 
    background: #fff;
  }
  
  
  navbar__item {
    width: 100%;
  }
  
  
  .navbar__links {
    text-align: center;
    padding: 2rem;
    width: 100%
    display: table;
  }
  
  /* ----- LINKS ----- */
  
  a:link {
  color: #E1FF00;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: #B2D119;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: gold;
  background-color: transparent;
  text-decoration: underline;
  transition: all 0.3s ease;
}
a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}

 /* --------------- LINKS END --------------- */
  
}
  