/* General Styles */
body {
    background: #1E1E1E; /* Updated background color */
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .maintenance-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  .logo-container {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .logo {
    width: 200px;
    height: auto;
    border-radius: 50%;
    border: 2px solid #b54f5e;
  }
  
  h1 {
    text-transform: uppercase;
    text-align: center;
    color: #F6F6F6;
    letter-spacing: .12em;
    margin: 20px;
    font-size: 2rem;
  }
  
  p {
    color: #F6F6F6;
    font-size: 1rem;
    text-align: center;
    margin-top: 10px;
  }
  
  #wrapper {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 800px;
  }
  
  .gears {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  
  .gears-container {
    width: 150px;
    height: 150px;
    font-size: 24px;
    padding: 9%;
    position: relative;
  }
  
  .message {
    text-align: center;
    letter-spacing: .15em;
    padding: 40px;
    background: #F6F6F6;
    margin-top: 20px;
    border-radius: 10px;
    width: 60%;
  }
  
  /* Contact Box */
  .contact-box {
    position: absolute;
    bottom: 20px;
    right: 20px;
  }
  
  .contact-link {
    color: #E9E581;
    font-size: 1rem;
    text-decoration: none;
    background: #2B2B2B;
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid #E9E581;
  }
  
  .contact-link:hover {
    background: #E9E581;
    color: #2B2B2B;
  }
  
  /* Pikachu Animation */
  .pikachu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
  }

  .pikachu {
    width: 50px;
    height: 50px;
    /* background: url('pikachu.png') no-repeat center center; */
    background-size: contain;
    animation: pikachu-bounce 1s infinite;
  }

  @keyframes pikachu-bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }

  /* Loading Gif */
  .loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
  }

  .loading {
    width: 80px; /* Increased size */
    height: 80px; /* Increased size */
    background: url('loading.gif') no-repeat center center;
    background-size: contain;
  }
