/* Reset stylów domyślnych */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Ustawienia ogólne */
body {
  font-family: Arial, sans-serif;
  background-color: #D0E8FF; /* Jasnobłękitne tło */
  color: #333;
  min-height: 100vh;
}

/* Kontener główny */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Wyśrodkowanie pionowe na desktopach */
  height: 100vh;
  padding: 20px; /* Odstęp dla urządzeń mobilnych */
}

/* Logo */
.logo {
  width: 150px;
  max-width: 100%;
  margin-bottom: 20px;
}

/* Linki wyglądające jak przyciski */
.buttons {
  display: flex;
  flex-direction: row;
  gap: 10px; /* odstępy między „przyciskami” */
  margin-bottom: 20px;
}

.buttons .btn {
  background-color: #4582EC;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.buttons .btn:hover {
  background-color: #2E69D3;
}

/* Zwykłe linki */
.links {
  display: flex;
  gap: 15px;
}

.links a {
  text-decoration: none;
  color: #4582EC;
  font-weight: 500;
  transition: color 0.3s;
}

.links a:hover {
  color: #2E69D3;
}

/* Responsywność – do 768px i niżej (typowe urządzenia mobilne) */
@media (max-width: 768px) {
  .container {
    justify-content: flex-start; /* Wyrównanie do góry na mobile */
    height: auto;
    padding-top: 40px; /* Dodatkowy odstęp od góry */
  }

  .buttons {
    flex-direction: column; /* „Przyciski” w jednej kolumnie na mobile */
  }
}
