@import url("https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "DM Mono";
}

nav {
    position: absolute;
    left: 0;
    width: 100vw;
    padding: 1em;
    display: flex;
    justify-content: space-between;
    gap: 2em;
    mix-blend-mode: difference;
    z-index: 10000;
}

nav img {
    width: 180px;
    height: auto;
}

nav a {
    font-family: "HelveticaNeueRoman", sans-serif;
    text-decoration: none;
    color: #fff;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider {
    position: fixed;
    width: 100vw;
    height: 100svh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 45vw;
    height: 100vh;
    overflow: hidden;
}

.slide-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    background-color: #0000005c;
    padding: 0.2rem 0.4rem;
    pointer-events: none;
    z-index: 2;
    opacity: 0.8;

}

.thumbnail-wheel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

.thumbnail-item {
    position: absolute;
    width: 35px;
    height: 50px;
    overflow: hidden;
}

@media (max-width: 1000px) {
    .slide {
        width: 75vw;
    }

    .thumbnail-item {
        width: 20px;
        height: 30px;
    }
}

@media (max-width: 600px) {
    .slide {
        width: 100vw;
    }

    .thumbnail-item {
        width: 15px;
        height: 20px;
    }

    nav img {
        width: 100px
    }
}