* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100 * var(--vh, 1vh));
}

#container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 3vw 6vw;
    font-size: 2vw;
    background-color: black;
    text-align: left;
    
}

#list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.link-item {
    cursor: pointer;
    background-color: white;
    color: black;
    /* margin: -1px 0px; */
    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: "neue-haas-unica", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
}

.link-title {
    padding: 0.0vw 0.6vw 0.2vw 0.6vw;
}

.link-item {
    width: 50vw;
    position: relative;
}

.link-item.large {
    width: 100%;
    max-width: unset;
}

.link-item.padded .img-wrp {
    padding: 1vw;
}

.img-wrp img {
    width: 100%;
    height: 100%;
}

.img-wrp {
    position: relative;
    top: max(1vh, 1vw);
    width: 100%;
    height: calc(var(--lw) * var(--ir));
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transition-property: opacity, top;
    transition-duration: 0.2s, 0.2s;
}

.img-wrp.loaded {
    opacity: 1;
    top: 0;
}

#preloader {
    position: fixed;
    background-color: white;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;;
    opacity: 1;
    transition: opacity 0.3s;
    z-index: 1;
}

#preloader.hide {
    opacity: 0;
}

::-webkit-scrollbar {
    display: none !important;
}

::selection {
    background-color: transparent;
}

@media (max-width: 800px) {
    #container {
        font-size: 4vw;
        padding: 8vw 8vw;
    }

    .link-title {
        padding: 0.7vw 2vw 1vw 2vw;
    }

    .link-item {
        width: 60vw;
    }

    .link-item.large {
        width: 100%;
    }
    
    .link-item.padded {
        width: 60vw;
    }

    .link-item.padded .img-wrp {
        padding: 2vw;
    }
}