body {
    background-image: radial-gradient(circle, #001d7b, #511536);
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    overflow: hidden;
}

h1 {
    color: white;
    font-weight: bold;
}

h2 {
    color: white;
}

img {
    width: 300px;
    height: auto;

}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    border-radius: 10px;
    border: 3px solid rgba(0, 0, 0, 0.4);
    width: fit-content;
    padding: 20px 60px;
    box-shadow: 2px 2px 4px #000000ca;
    position: relative;
    z-index: 1;
}

a {
    text-decoration: none;
    color: inherit;
    padding: 0;
    cursor: pointer;
}

.smart-button {
    display: grid;
    grid-template-columns: 50px 1fr;
    /* 50px na ikonę, 1fr (czyli pozostałe miejsce) na tekst */
    align-items: center;
    gap: 30px;
    width: 200px;
    text-shadow: 2px 2px 4px #000000a4;
    border-radius: 10px;
    border: 3px solid rgba(0, 0, 0, 0.4);
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;

}

.smart-button p {
    color: white;
    font-weight: bold;
    margin: 0;
    text-align: left;
}

.smart-button:hover {
    background-color: rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
}

.smart-button img {
    width: 40px;
    height: auto;
    justify-self: center;
}

.smart-button img[src="img/yt-icon.png"] {
    width: 50px;
}


.aurora {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #4f6ef7, transparent);
    top: -100px;
    left: -150px;
    animation: float1 4s ease-in-out infinite alternate;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #c026d3, transparent);
    bottom: -80px;
    right: -100px;
    animation: float2 5s ease-in-out infinite alternate;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #f43f5e, transparent);
    top: 50%;
    right: -50px;
    animation: float3 6s ease-in-out infinite alternate;
}

.orb-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #06b6d4, transparent);
    bottom: 10%;
    left: -50px;
    animation: float4 4.5s ease-in-out infinite alternate;
}

@keyframes float1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(120px, 80px) scale(1.15);
    }
}

@keyframes float2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-100px, -60px) scale(1.2);
    }
}

@keyframes float3 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-80px, -120px) scale(0.9);
    }
}

@keyframes float4 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(90px, -70px) scale(1.1);
    }
}

/* Responsywność dla urządzeń mobilnych */
@media screen and (max-width: 600px) {
    body {
        overflow-y: auto;
        overflow-x: hidden;
        padding: 40px 0px;
    }

    .container {
        width: 85%;
        padding: 30px 20px;
        box-sizing: border-box;
        text-align: center;
    }

    img {
        width: 100%;
        max-width: 220px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.1rem;
        text-align: center;
    }

    .smart-button {

        width: 280px;
        height: auto;
        margin: 0 auto;
        box-sizing: border-box;
    }
}