@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }

body {
    min-height: 100vh;
    background: url("background.png") no-repeat;
    background-size: cover;
    background-position: center;
  }

  
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(100px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 100;
  }
  
  .header::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent
    );
    transition: 0.5s;
  }
  
  .header:hover::before {
    left: 100%;
  }
  
  .logo {
    color: #000000;
    font-size: 25px;
    text-decoration: none;
    font-weight: 600;
    cursor: default;
  }
  
  .navbar a {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    margin-left: 35px;
    transition: 0.3s;
  }
  
  .navbar a:hover {
    color: rgb(0, 183, 255);
  }
  
  #menu-icon {
    font-size: 36px;
    color: #ffffff;
    display: none;
  }
  
  /* BREAKPOINTS */
  @media (max-width: 992px) {
    .header {
      padding: 1.25rem 4%;
    }
  }
  
  @media (max-width: 768px) {
    #menu-icon {
      display: block;
    }
  
    .navbar {
      position: absolute;
      top: 100%;
      left: 0%;
      width: 100%;
      padding: 0.5rem 4%;
      display: none;
    }
  
    .navbar.active {
      display: block;
    }
  
    .navbar a {
      display: block;
      margin: 1.5rem 0;
    }
  
    .nav-bg {
      position: absolute;
      top: 79px;
      left: 0;
      width: 100%;
      height: 295px;
      background: rgba(255, 255, 255, 0.1);
      border-bottom: 2px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      z-index: 99;
      display: none;
    }
  
    .nav-bg.active {
      display: block;
    }
  }
  
  .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }
  .glass-button {
    display: inline-block;
    padding: 16px 48px;
    border: 0;
    text-decoration: none;
    border-radius: 15px;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(30px);
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    cursor: pointer;
    transition: 0.5s linear;
  }
  
  .glass-button:hover {
    background-color: rgba(255,255,255,0.2);
    transition: 0.125s linear;
  }

  .button {
    cursor: pointer;
    align-items: center;
    gap: 10px;
    padding: 10px 31px;
    font-weight: 400;
    display: flex;
  }

  .glass-panel {
    color: #fff;
    margin: 40px auto;
    background-color: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    border-radius: 15px;
    padding: 32px;
    backdrop-filter: blur(10px);
  }
  

  button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

img {
    border-radius: 15px;
}

table {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.thumbnail-panel {
  color: #fff;
  margin: 40px auto;
  background-color: rgba(255,255,255,0.1);
  width: 100%;
  padding: 32px;
  backdrop-filter: blur(10px);
}