body, html {
    overflow: hidden; /* Verhindert Scrollbalken */
    margin: 0;
    padding: 0;
    height: 100%;
}

.dvd-home {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 20;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(6, 10, 22, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 0.4rem 0.75rem;
    font: 600 0.78rem system-ui, sans-serif;
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.dvd-home:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.34);
}

/* Der Container, der den gesamten Bildschirm einnimmt */
#screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--body-bg-color, #0B1020);
}

/* Das hüpfende Bild */
#dvd-logo {
    position: absolute;
    width: 150px;
    height: auto;
    will-change: transform;
}

main {
    display: none;
}
