/* Ogólne ustawienia */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(#0d1117, #1a1f29); /* ciemne niebiesko-czarne tło */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

/* Główne pudełko */
.container {
  max-width: 600px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6); /* lekka przezroczystość */
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Nagłówek */
h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  text-shadow: 0 0 5px #7289da;
}

/* Podtytuł */
p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Przycisk */
.button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #23272a;
  color: white;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #5865f2; /* 
}

/* Responsywność */
@media (max-width: 600px) {ssssss
  .container {
    margin: 20px;
    width: 90%;
  }

  h1 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
  }
}