body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: space-grotesk, system-ui, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./boykisser-dance.gif') no-repeat;
    background-position: center;
    background-size: 250% auto;

    filter: blur(7px);
}

.image-row {
    position: absolute;
    width: 100%;
    height: 60px;
    background-repeat: repeat-x;
    background-size: 60px !important;
    animation: scroll 20s linear infinite;

}

.top-row {
    top: 0;
    background: url('./boykisser.png') repeat-x;
    transform: rotate(180deg);
}

.bottom-row {
    bottom: 0;
    background: url('./boykisser.png') repeat-x;
}


.content {
    position: relative;
    z-index: 1;
    padding: 20px;

}

.main {

    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0px 10px 15px 10px rgb(0 0 0 / 15%);
    background-color: rgb(228 228 228 / 15%);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.titlestuff {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.topgif {
    width: 15%;
    border-radius: 50%;
    border: 1px solid black;
    margin: 0 10px;
}

@keyframes scroll {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -1000px 0;
    }
}

@media (max-width: 768px) {
    .content h1 {
        font-size: 1.5em;
    }

    .content p {
        font-size: 1em;
    }
}