html, body {
    height: 100%;
    margin: 0;
    overflow: auto;
    font-size: 24px;
    line-height: 1.625;
    color: #202013;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    background: linear-gradient(to bottom, #ff9999, #660000); /* Hellerer oben, blutrot unten */
}

body {
    color: #fff;
    position: relative;
}

h1 {
    animation: fadeIn 2s ease-in-out;
}

p {
    animation: popIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #660000;
}

::-webkit-scrollbar-thumb {
    background-color: #ff0000;
    border-radius: 10px;
    border: 3px solid #660000;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

#noiseCanvas {
    opacity: 0.5; /* 50% transparent */
}

.gallery {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    z-index: 1;
}

.gallery-item {
    width: 320px;
    height: 180px;
    background-size: cover;
    background-position: center;
    border: 2px solid #fff;
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover {
    transform: scale(1.1);
}
