/* Ustawienia globalne */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Tło strony */
body {
    background: url("background-zaslepka.png") no-repeat center center fixed;
    background-size: cover;
}

/* Warstwa z treścią */
.overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    backdrop-filter: none; /* Możesz ustawić np. blur, jeśli chcesz efekt */
}

/* Kontener logo + przycisk */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Logo */
.logo {
    max-width: 600px;
    width: 100%;
    height: auto;
}
.label-btn {
    max-width: 580px;
    width: 60%;
    height: auto;
}
/* CTA jako grafika */
.cta-btn {
    cursor: pointer;
}
.cta-btn img {
    max-width: 580px;
    width: 70%;
    height: auto;
    transition: transform 0.3s ease;
}

.cta-btn img:hover {
    transform: scale(1.05);
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1024px) {
    body {
        background-position: right center;
    }
    .cta-btn img {
        /*background-color: #005195;*/
        /*border-radius: 10px;*/
        /*border: 2px solid white;*/
    }
}

@media (max-width: 768px) {
    .content {
        padding-top: 10%;
    }
    .logo {
        max-width: 480px;
    }
    .cta-btn img {
        max-width: 460px;
    }
}

@media (max-width: 480px) {
    .content {
        gap: 15px;
        padding-top: 30%;
    }
    .logo {
        max-width: 310px;
    }
    .cta-btn img {
        max-width: 300px;
    }
}
