
    .hero {
      background-color: #30335f;
      font-family: 'GlassFont', sans-serif;

      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .canvas-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      text-align: center;
    }

    @font-face {
      font-family: GlassFont;
      src: url(../fonts/Glass_TTY_VT220.ttf) format('truetype');
    }

    .hero-content__logo {
          margin-bottom: -3rem;
    }

    .eyebrow {
      font-size: 1.3rem;
      text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
      margin-bottom: 22px;
      color: lightgreen;
      
    }

    .h1 {
      font-size: 2rem;
      color: white;
      text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
      margin: 0;
    }

    span.highlight {
      font-size: 5rem;
      text-shadow: 0 0 5px rgba(127, 255, 0, 0.8);
      color: lightgreen;
      position: relative;
      left: 10px;
      top: 10px;
    }   

    .countdown {
      font-size: 1.5rem;
      /* text-shadow: 0 0 5px rgba(127, 255, 0, 0.8); */
      color: white;
      margin-top: 60px;
      
    }

    /* Main nav styles */
    .main-nav-container {
      position: fixed;
      display: flex;
      gap: 1rem;

      top: 0px;
      right: 1rem;
      z-index: 99;
    }


    .main-nav__list {
      display: flex;
      list-style: none;
      flex-direction: row;
      gap: 20px;
      padding: 10px 10px;
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 5px;
      color: white;
    }

    .main-nav__item {
      cursor: pointer;
      padding: 5px 0px;
      border-radius: 5px;
      transition: background-color 0.3s ease;
      list-style: none;
      color: white;
    }

    .main-nav__item .main-nav__link { 
      color: white;
      text-transform: uppercase;
      text-decoration: none;
    }    


    /* lang switcher styles */
    .lang-switcher {

      /* position: absolute;
      top: 20px;
      right: 20px; */

      /* z-index: 3; */
      /* display: flex; */
      /* gap: 10px; */
      /* color: white; */
    }

    .lang-switcher__list {
      display: flex;
      list-style: none;
      flex-direction: column;
      gap: 20px;
      padding: 10px 15px;
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 5px;
      color: white;      
      height: 26px;
      overflow-y: hidden;
    }

    .lang-switcher__list:focus-within {
      height: auto;
    }

    .lang-switcher__list:focus {
    outline: none;
}

    .lang-switcher__item {
      cursor: pointer;
      padding: 5px 0px;
      border-radius: 5px;
      transition: background-color 0.3s ease;
      list-style: none;
      color: white;
    }

    .lang-switcher__item .lang-switcher__link { 
      color: white;
      text-transform: uppercase;
      text-decoration: none;
    }

    .lang-switcher__item .lang-switcher__link.active { 
      text-decoration: underline;
    }
