@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(10px);
    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%;
  }

  .button.primary {
    background: linear-gradient(#006fd6 0% 40%,#0067c7,#0050d1 100%);
    border-top: .5px solid #2495ff;
    border-radius: 7px;
    align-items: center;
    transition: all .2s ease-in-out;
  }

  .button.secondary {
    background: linear-gradient(#66768c 0% 40%,#57687f 60%,#47566b 100%);
    border-top: .5px solid #96a7c0;
    border-radius: 7px;
    transition: all .2s ease-in-out;
  }

  .button {
    cursor: pointer;
    align-items: center;
    gap: 10px;
    padding: 10px 31px;
    font-weight: 400;
    display: flex;
  }

  button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

img {
    border-radius: 15px;
}

table {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
