body {
    overflow: hidden;
}

#box {
    height: 100vh;
    width: 100vw;
    background: #111;
    position: relative;
}

#dvd {
    position: absolute;
    top: 0px;
    left: 0px;
    width: max-content;
    max-width: 30vw;
    height: max-content;
    max-height: 30vw;
    z-index: 9999;
}

#dvd img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(3rem, 5vw, 8vw);

    background: linear-gradient(
        90deg,
        #73eafa,
        #2fb1c2
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    text-shadow: 2px 8px 8px #4eb9c7;
}