
  .card::-webkit-scrollbar {
    width: 28px;
    }

  .card::-webkit-scrollbar-track {
    background: #ffffff;
    border-left: 2px solid #b5b5b5;
    border-right: 2px solid #b5b5b5;
    }

  .card::-webkit-scrollbar-thumb {
    background: #26336f;  
    border: 2px solid #ffffff;
    }

  .card::-webkit-scrollbar-thumb:hover {
    background: #1d2858;
    }
  
  body {
    background-image: url('wallpapers/miscellaneous/1.jpg');
    background-size: cover;      
    background-repeat: no-repeat; 
    background-attachment: fixed;
    overflow: hidden;
    margin: 0;
    font-family: Windows_XP, sans-serif;
  }

  /* Menu */
  nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.35);
    -webkit-backdrop-filter: blur(6px);
    text-align: center;
  }

  nav a {
    margin: 0 20px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: 0.2s;
  }

  nav a:hover {
    color: #ffdfdf;
  }
  
  .card {
    width: 600px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.10);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 5);
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    overflow-y: auto;
    max-height: 70%;
  }
  
  #home h1 {
  text-align: center;
  margin-top: -10px;
  }
  
  #home p {
  font-size: 25px; 
  }

  h1, h2, p {
    margin: 10px 0;
  }
  
  