<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*, ::after, ::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html, body {
    height: 100%;
    background-color: black;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

#background-video {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    object-fit: cover;
    z-index: 2;
    transition: filter 2s ease;
}

/* Discover More Button */

#button-discover {
    position: fixed;
    top: 0;
    right: 0;
    margin: 1.5em;
    z-index: 5;
    text-align: center;
    padding: 1em;
    border-radius: .9em;
    border: 0px;
    background-color: rgba(255, 255, 255, .1);
    color: rgba(0, 0, 0, .1);
    text-decoration: none;
    font-size: 1em;
    font-weight: 900;
    transition: background-color 0.3s ease, color 0.3s ease, opacity 2s ease;
}

#button-discover:hover {
    background-color: rgba(255, 255, 255, .6);
    color: rgba(0, 0, 0, .6);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

video.darkened {
    filter: brightness(30%) blur(4px);
}

#button-discover.removed {
    opacity: 0;
}

/* Title */

#title {
    z-index: 3;
    color: white;
    font-size: 4em;
    font-weight: 900;
    text-align: center;
    margin: 1em;
}

#title-link {
    color: white;
    opacity: .5;
    text-decoration: none;
    transition: all .5s ease;
}

#title-link:hover {
    opacity: 1 !important;
    animation: none !important;
}

#cursor {
    position: fixed;
    width: 4em;
    z-index: 4;
    top: 100%;
    left: 100%;
    transition: 1s ease-in-out;
}

#title-link.blink{
    animation: blink 2s linear infinite 0s
}

@keyframes blink{
    0%, 12%, 36%, 60%, 100%{ opacity: .5 }
    24%, 48%{ opacity: 1 }
}</pre></body></html>