/*
 Theme Name:   SILVERSNAKE Theme
 Theme URI:    https://silversnake.pl
 Description:  A custom theme for GeneratePress
 Author:       Aga Cwikla
 Author URI:   https://silversnake.pl
 Template:     generatepress
 Version:      1.0
*/

body{
    background-color: var(--accent);
}

/*ruchomy napis*/
.marquee {
    width: 100%;
    overflow: hidden;
    background: #B28DDE;
    padding: 30px 0;
}

.marquee-content {
    display: flex;
    width: max-content;
    gap: 70px;
    animation: marquee 20s linear infinite;
    text-decoration: none;
    color: #FFFFFF;
}

.marquee-content span {
    flex-shrink: 0;
    white-space: nowrap;

    font-family: "Inter", sans-serif;
    font-size: 72px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -2px;

    color: #FFFFFF;
}

.marquee-content:hover {
    color: #FFFFFF;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1024px) {
    .marquee-content span {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .marquee {
        padding: 22px 0;
    }

    .marquee-content {
        gap: 45px;
        animation-duration: 16s;
    }

    .marquee-content span {
        font-size: 42px;
        letter-spacing: -1px;
    }
}