@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

body {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  background-color: #1a1a1a;
  color: #ffffff;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 30px;
  border-radius: 10px;
  background-color: #2a2a2a;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

header .logo {
  width: 80px; /* Adjust as needed */
  height: auto;
}

header h1 {
  font-size: 3em;
  margin-bottom: 10px;
  color: #ffff00;
}

header h2 {
  /* Changed from p to h2 in index.html, so updating style */
  font-size: 1.2em;
  margin-bottom: 30px;
}

.server-info {
  margin-bottom: 30px;
  text-align: left;
}

.server-info p {
  font-size: 1.1em;
  margin: 30px 0;
  line-height: 1.1em;
}

.copy-ip {
  background-color: #3a3a3a;
  padding: 10px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.copy-ip:hover {
  background-color: #4a4a4a;
}

.discord-button {
  display: inline-flex; /* Use flexbox to align icon and text */
  align-items: center; /* Vertically center the items */
  padding: 15px 30px;
  font-size: 1.2em;
  color: #ffffff;
  background-color: #7289da;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.discord-button i {
  margin-right: 10px; /* Space between icon and text */
}

.discord-button:hover {
  background-color: #5b6eae;
}

footer {
  margin-top: 30px;
  font-size: 0.9em;
  color: #aaaaaa;
}
