/* Ustawienia globalne */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Stylowanie dla całej strony */
body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Tło */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('background.jpg') no-repeat center center;
    background-size: cover; /* Wypełnia cały ekran */
    filter: grayscale(10%) brightness(20%);
    z-index: -1;
}

/* Treść na środku strony */
.content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.content h1 {
    color: white;
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    text-align: center;

    /* Animacja */
    animation: pulse 2s infinite;
}

/* Responsywność */
@media (max-width: 768px) {
    .background {
        background-size: cover; /* Utrzymuje dopasowanie na telefonach */
        background-position: center; /* Centruje obrazek */
    }

    .content h1 {
        font-size: 2rem;
    }
}

/* Definicja animacji */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
