@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Poppins', sans-serif;
}

.textbox {
  background-color: rgb(0, 0, 0);
  color: white;
  height: 5px;
  width: 300px;
  padding: 50px;
  margin: 20px;
}

#mySidenav a {
    position: absolute;
    left: -80px;
    transition: 0.3s;
    padding: 15px;
    width: 150px;
    text-decoration: none;
    font-size: 20px;
    color: white;
    border-radius: 0 5px 5px 0;
  }
  
  #mySidenav a:hover {
    left: 0;
  }
  
  #about {
    top: 700px;
    background-color: #000000;
  }
  
  #bonus {
    top: 600px;
    background-color: #000000;
  }

  #video {
    top: 500px;
    background-color: #000000;
  }

ol {
    margin-left: -8px;
    margin-right: 1px;
    border-radius: 1px;
    padding: 10px;
    text-align: center;
}


button {
    margin-left: -8px;
    margin-right: 1px;
    border-radius: 1px;
    padding: 10px;
    text-align: center;
}

body
{
    display: absolute;
    justify-content: top;
    align-items: top;
    min-height: 300vh;
    background: #ff9900;
}

/* Adjustments for the header and banner */
.banner {
    position: relative;
    width: 100%;
    height: 30vh; /* Adjusted height for the banner */
    background-size: cover;
    background-color: #ffffff; /* Dark gray background for the banner */
  }
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    padding: 40px 100px;
    z-index: 100000;
    border-bottom: 2px solid rgb(0, 0, 0); /* White border at the bottom of the header */
    opacity: 1;
    transition: opacity 0.6s;
  }

  header.hidden {
    opacity: 0;
  }
  
  header ul {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    border-top: 2px solid rgb(255, 255, 255); /* White border at the top of the ul */
    border-bottom: 2px solid white; /* White border at the bottom of the ul */
  }
  
  header ul li {
    position: relative;
    list-style: none;
    border-left: 2px solid white; /* White border on the left of each list item */
  }
  
  header ul li:first-child {
    border-left: none; /* Remove left border for the first list item */
  }
  
  header ul li a {
    position: relative;
    margin: 0 15px;
    text-decoration: none;
    color: hsl(0, 0%, 100%);
    letter-spacing: 2px;
    font-weight: 500;
    transition: 0.6s;
  }
  
  /* Add hover effect to header buttons */
  header ul li a:hover {
    color: #000000; /* Change to the desired highlight color */
  }
  

h1 {
    text-align: center;
    font-family: 'Poppins';
    min-height: 5vh;
}

h3 {
    text-align: center;
    font-family: 'Poppins'; 
    color: rgb(252, 252, 252);
    min-height: 10vh;
}

p {
    text-align: left;
    margin: 0 400px;
    font-family: 'Poppins'; 
    color: rgb(0, 0, 0);
    min-height: 30vh;
}

div.center {

    text-align: center;
    
}

