body {
  background-color: #0a0a0a;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  padding: 20px;
  max-width: 90%;
}
.server-status {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.online {
  color: #32cd32;
  font-weight: bold;
}

.offline {
  color: #ff5555;
  font-weight: bold;
}

.logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto 30px auto;
  display: block;
}

h1 {
  font-size: 3rem;
  margin-bottom: 5px;
  color: #32a852;
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ccc;
}

p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.4;
}

.discord-button {
  display: inline-block;
  background-color: #5865F2;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.noto {
  font-size: 5rem;

.discord-button:hover {
  background-color: #4752c4;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  p {
    font-size: 1rem;
  }

  .discord-button {
    padding: 12px 24px;
    font-size: 1rem;
  }
}
