body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
    transition: background-color 0.5s ease;
  }
  
  .container {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 2s ease-in;
  }
  
  h1 {
    font-size: 3rem;
    color: #76c7c0;
    margin-top: 20px;
    animation: slideInFromTop 1.5s ease-in-out;
  }
  
  .server-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
  }
  
  .server-box {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
    width: 30%; /* Adjust width to make boxes fit horizontally */
  }
  
  .server-box:hover {
    transform: scale(1.05);
  }
  
  h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #76c7c0;
  }
  
  p {
    font-size: 1.2rem;
  }
  
  button {
    padding: 12px 20px;
    background-color: #76c7c0;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    margin-top: 30px;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #5fa5a0;
  }
  
  .warning-message {
    margin-top: 30px;
    padding: 20px;
    background-color: #e74c3c;
    color: white;
    border-radius: 5px;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  .warning-message i {
    font-size: 1.5rem;
  }
  