
@import url('https://fonts.googleapis.com/css2?family=Chivo:wght@100&family=Orbitron:wght@400;600;700;900&family=Poppins:wght@200&family=Rubik+Microbe&display=swap');
  header{
    z-index:10000;
  }
.headertop {
    position: sticky;
     top: 0; 
    width: 100%;
    box-shadow: 0 4px 20px hwb(208 27% 56% / 0.1);
    background-color: transparent;
    z-index:1;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
  }
  
  .menuheader {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .menuheader a {
    display: block;
    padding: 7px 15px;
    font-size: 17px;
    font-weight: 500;
    transition: 0.2s all ease-in-out;
    color: #fff;
    text-decoration: none;
    font-family: 'Orbitron',sans-serif;
  }
  
  .menuheader:hover a {
    opacity: 0.4;
  }
  
  .menuheader a:hover {
    opacity: 1;
    color: #fff;
  }
  
  .menu-header-icon {
    display: none;
  }
  
  #menu-header-toggle {
    display: none;
  }
  
  #menu-header-toggle:checked ~ .menuheader {
    transform: scale(1, 1);
  }
  
  @media only screen and (max-width: 950px) {
    .menuheader {
      flex-direction: column;
      background-color: #151418;
      align-items: start;
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      transform: scale(1, 0);
      transform-origin: top;
      transition: transform 0.3s ease-in-out;
      box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
      z-index: 10000;
    }
  
    .menuheader a {
      margin-left: 12px;
    }
  
    .menuheader li {
      margin-bottom: 10px;
      z-index: 10000;
    }
  
    .menu-header-icon {
      display: block;
      color: #fff;
      font-size: 28px;
      cursor: pointer;
    }
  }
  .logoheader{
    width:4rem;
  }
  .logohead a {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
  }
  
  .logohead a span {
    color: #8739fa;
  }