 /* Hii */

    .rollenmitdenbesten {
        top: 0;
        left: 0;
        width: 100%;
        position: fixed;
        overflow: hidden;
        background-color: #00008b;
        overflow: hidden;
        z-index: 1000;
        animation: blink-colors 2s infinite;
    }

    .roller {
        display: inline-block;
        color: rgb(0, 0, 0);
        font-family: 'Cinzel', serif;
        font-size: 18px;
        white-space: nowrap;
        animation: scroll-left 30s linear infinite;
    }

    .rollergif {  
        height: 20px;
        vertical-align: middle;
        margin: 0 5px;
    }

 
                    @keyframes scroll-left {
                            0% {
                                transform: translateX(100%);
                                opacity: 0;
                            }
                            10% {
                                opacity: 1;
                            }
                            90% {
                                opacity: 1;
                            }
                            100% {
                                transform: translateX(-100%);
                                opacity: 0;
                            }
                        }

                        @keyframes blink-colors {
                            0% {
                                background-color: #ff00b3;
                            }
                            50% {
                                background-color: #f3ef06;
                            }
                            100% {
                                background-color: #ff00b3;
                            }
                        }

    .gif-logo {
        display:grid;
        grid-template-columns: repeat(3, 1fr);
        margin-top: 35px;
        text-align: center;
        justify-items: center;
    }

    .sleep {
        margin-top: 5px;
        text-align: center;
        background-image: url(https://indx.neocities.org/images/32460yhdnc5g4ou.jpg);
    }
    
    .headertext {
        color: crimson;
        font-family: 'Cinzel', serif;
        font-size: 19px;
        text-align: center;
        margin-top: 30px;
    }

    .kawaii {
        display:grid;
        grid-template-columns: repeat(6, 0.5fr);
        justify-items: center;
        margin-top: 40px;
        position:relative;
    }

    .bild {
        display: inline-block;
        position: relative;
        line-height: 0;
        margin-bottom: 15px;
    }


    .bild img {
        border: 1px solid crimson;
        vertical-align: top;
    }

    .hoverlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;

        background: rgba(130, 189, 36, 0.329);
        backdrop-filter: blur(10px);

        opacity: 0;
        transition: opacity 0.3s ease;

        display: flex;
        align-items: flex-start;
        justify-content: center;
        line-height: 18px;

        font-size: 0.95rem;
        color: #192b49;
        text-align: center;
        padding: 20px;
        font-family: "Roboto-bold",sans-serif;
        font-weight: bold;
    }

.box {
    position: absolute;
    bottom: 0; 
    left: 0;
    right: 0;
    
    background: rgba(220, 20, 60, 0.9); 
    color: white;
    font-size: 0.9em;
    text-align: center;
    padding: 8px 10px;
    font-family: Arial, Helvetica, sans-serif;
    
    z-index: 2; 
}

    .bild:hover .hoverlay {
        opacity: 1;
    }

    .construction {
            display: flex;
            width: 100%;
            align-items: center;
            margin-top: 30px;
            justify-content: center;
    }

    .construction img {
            max-width: 100%;
            height: auto;
    }