body {
    font-size: 11px; /* Domyślny rozmiar tekstu dla całej strony */
}

.menu {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    text-align: center;
    border-radius: 15px; /* Zaokrąglone rogi menu */
    display: inline-block;
    margin-bottom: 15px;
}

.menu button {
    background-color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, border-radius 0.3s;
    border-radius: 15px; /* Zaokrąglone rogi przycisków */
}

.menu button:hover {
    background-color: #0056b3;
    color: white;
}

.weather-container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 2;
    position: relative;
    margin-bottom: 20px;
}

.weather-icon {
    width: 100px;
    height: 100px;
}

.time {
    font-size: 1.2em;
    margin-top: 10px;
}

/* Animacja deszczu */
.rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url(''); /* Tekstura kropli deszczu */
    animation: rain 0.1s linear infinite;
    opacity: 0.5; /* Lekka przezroczystość dla lekkiego deszczu */
}

@keyframes rain {
    0% { background-position: 0 0; }
    100% { background-position: 20% 100%; }
}

/* Animacja śniegu */
.snow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url(''); /* Tekstura płatków śniegu */
    animation: snow 10s linear infinite;
}

@keyframes snow {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}

/* Kontener dla płatności */
.payment-container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 2;
    position: relative;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.payment-options form, .payment-options a {
    display: inline-block;
}

footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 10px 10px;
  font-size: 10px;
  border-radius: 15px; /* Zaokrąglone wszystkie rogi */
  width: 370px; /* Pełna szerokość strony */
  margin: 10px 0 0 0; /* Mały odstęp od góry */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-info p {
  margin: 5px 0;
}

.footer-social {
  margin-top: 10px;
}

.footer-social a {
  color: #00aaff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

.footer-social a:hover {
  text-decoration: underline;
}