/*Font Used: Press Start 2P*/
    @import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
    @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

    body {
      font-family: 'Press Start 2P', Arial, sans-serif;
      margin: 0;
      padding: 0;
      text-align: center;
      color: #fff;
    }

    body {
      font-family: 'Press Start 2P', Arial, sans-serif;
      margin: 0;
      padding: 0;
      text-align: center;
      color: #fff;
    }

    /* Background with overlay */
    body::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://i.imgur.com/CMdk3Gc.jpeg') no-repeat center center fixed;
      background-size: cover;
      z-index: -2;
    }
    body::after {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      z-index: -1;
    }

    header {
      padding: 60px 20px 20px;
    }

    header img {
      max-width: 500px;
      width: 100%;
      height: auto;
    }

    main {
      margin-top: 40px;
    }
/*Button styles.*/

    .btn {
      display: inline-block;
      background: rgba(0,0,0,0.65);
      color: #ff9900;
      text-decoration: none;
      padding: 15px 30px;
      margin: 15px;
      border: 2px solid #ff9900;
      border-radius: 10px;
      font-size: 1em;
      transition: all 0.2s ease-in-out;
    }

    .btn:hover {
      background: #ff9900;
      color: #000;
    }

    footer {
      margin-top: 80px;
      padding: 20px;
      color: #ccc;
    }
/*For the socials section at the bottom.*/
    .socials {
      margin: 20px 0;
    }

    .socials a {
      color: #ff9900;
      font-size: 1.8em;
      margin: 0 15px;
      transition: color 0.2s ease;
    }
/*Changes button hover*/
    .socials a:hover {
      color: #fff;
    }
/*the box for the IP */
.ip-box {
  display: inline-block;
 
  color: #ff9900;
  padding: 15px 25px;
  
  border-radius: 10px;
  font-family: 'Press Start 2P', Arial, sans-serif;
  font-size: 1em;
  cursor: pointer;
  user-select: all;
  transition: all 0.2s ease-in-out;
}

    .hover-container {
        position: relative; /* Essential for positioning the hover-text */
        padding: 10px;
          
    }

    .hover-text {
        display: none; /* Hidden by default */
        position: absolute;
        top: 100%; /* Position below the hover-container */
        left: 0;
  
        color: white;
        padding: 5px;
        white-space: nowrap; /* Prevents text from wrapping */
    }

    .hover-container:hover .hover-text {
        display: block; /* Show on hover */
    }
/* Page load animation */
.page-load {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}
.home-link {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.7);
  color: #ff9900;
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid #ff9900;
  border-radius: 8px;
  font-size: 0.9em;
  transition: all 0.2s ease-in-out;
  z-index: 1000;
}

.home-link:hover {
  background: #ff9900;
  color: #000;
}
