
body{
    background-color: #000000;
    margin: 0;
    overflow-x: hidden;
  }
  
  .bungee-hairline-regular {
  font-family: "Bungee Hairline", sans-serif;
  font-weight: 400;
  font-style: normal;
}


 .header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 20px;
                font-family: 'Bungee Hairline', sans-serif;
                color: #ffffff;
                background-color: transparent;
                position: fixed;
                width: 100%;
                top: 0;
                left: 0;
                z-index: 1000;
            }
        
            .header .title {
                font-family: 'Bungee Hairline', serif;
                font-size: 20px;
            }
        
            .header .nav {
                display: flex;
                gap: 30px;
                margin-right: 100px;
            }
        
            .header .nav a {
                font-family: 'Bungee Hairline', sans-serif;
                  text-decoration: none;
                  color: #ffffff;
                font-size: 20px;
              }
        


.header .title {
  animation: floatIn 1s ease-out ;
  }
  
  @keyframes floatIn {
  0% {
      opacity: 0;
      transform: translateY(100px);
  }
  100% {
      opacity: 1; 
      transform: translateY(0);
  }
  }

  /*Header*/
  
  @media screen and (min-width: 459px) {
  h1 {
     font-size: 100px;
   }
  }
  
  
  @media screen and (max-width: 458px) {
  h1 {
     font-size: 75px;
   }
  }
  
  h1 {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    color: #fffefb;
    padding-top: 50px;
    
    }
  
  
  h1 {
  display: block;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  }
  
  /*header animation*/
  
  h1 {
  animation: floatIn 1s ease-out ;
  }
  
  @keyframes floatIn {
  0% {
      opacity: 0;
      transform: translateY(100px);
  }
  100% {
      opacity: 1; 
      transform: translateY(0);
  }
  }
  
  /* a styles*/
  a {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 45px;
  }
  
  a {
    display: block;
    margin-block-end: 0.5em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
  }
  
  a:link,
  a:visited{
    color: rgb(240 240 240 /1);
    text-decoration: none;
  }
  
  a:hover,
  a:focus{
    color: rgb(255, 208, 0) ;
  }
  
  /*header animation*/
  
  a {
    animation: floatIn 1s ease-out ;
  }
  
  @keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1; 
        transform: translateY(0);
    }
  }