/* 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;
  overflow-x: hidden;
  
  margin: 2;
  padding-left: 25px;
   padding-right: 25px;
}






.content1 {
  background-position-y: 750px;
  opacity: 50%;
  color: #00FF0D; /*white*/
        }





body {
  background-image: url(https://tvnoise.neocities.org/websitebg1.png); /*FUCK YEAH FIXED BACKGROUNDS*/
  background-attachment: fixed;
  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: 75px;
      display: flex;
    justify-content: center;
    align-items: center;
    font-size: .5rem;
    position: fixed;
    
    
    z-index: 999;
    overflow: hidden;
  }
  
  
  
  .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 75px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        margin: 0 auto;
      
        
        
  }
  
  
  /* VVV  PADDING LEFT CHANGES logo ROW POSITION   VVV */
        
  .navbar__logo {
    background-color: #99E7FF;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
  
    
    
  }
  
  
  
  
  /* VVV  PADDING LEFT CHANGES BUTTON ROW POSITION   VVV */
  .navbar__menu {
    display: flex;
    align-items: center;
    list-style:none;
    text-align: center;
    padding-left: 200px;
    position: fixed;
    
  }
  
  .navbar__item {
    height: 75px;
    
  }
  
  
  
  .navbar__links {
    color: #00FF0D;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
    overflow:hidden;
  }
  
  
  
  
  .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: fixed;
    
    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: 1rem;
  
  }
  
  
  
  /* VVV  EDIT LOGO APPEARANCE HERE   VVV */
  #navbar__logo {
    padding-left: 0px;
     display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    
    height: 100%;
    font-size: 1rem;
  }
  
  

  
  
  navbar__item {
    width: 100%;
  }
  
  
  .navbar__links {
    text-align: center;
    padding: 0.5rem;
    width: 100%
    display: table;
  }
  
  

  
  
 
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  /* ----------------------- CRT TV Overlay ----------------------------- */
  
  
  
  .tv__overlay {
    border-image-source: red;
    border-style: solid;
    border-width: 20px;
    
  border-image-slice: 1; 
  pointer-events: none;
  
  }
  
  
  
  
  #tv__overlay {
    position:fixed;
    
    padding: 0%;
    width: 100vw;
    height: 100vh;
    top:0;
    left:0;
    z-index:999;
    opacity: 0.5;
    
    pointer-events: none;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  /* ----- 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 --------------- */
  
}
  