body {
    margin: 0;
    padding: 0;
}

.splide {
    position: fixed;
    width: calc(100vw - 80px);
    margin-left: 40px;
}

.splide__track {
    padding-top: 0;
    padding-bottom: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
}

.splide__slide {
    display: flex;
    align-items: center;
    position: unset;
}

.splide__slide a {
    font-family: "Plain Thin";
    font-size: 40px;
    color: #666;
    text-decoration: none;
    background-clip: text;
}

.splide__slide a:hover {
    transition: transform 0.1s ease-out 0s;
    transform: skewX(-10deg);
}

.splide__slide.even {
    justify-content: flex-end;
}

.splide__arrow {
    background: transparent;
}

.splide__arrows--ttb .splide__arrow--prev {
    bottom: 30px;
    top: unset;
    left: 4px;
}

.splide__arrows--ttb .splide__arrow--next {
    position: absolute;
    bottom: 30px;
    top: unset;
    left: unset;
    right: 0px;
}

.hoverimgs {
    position: relative;
}

.hoverimgs div {
    position: fixed;
    overflow: hidden;
    z-index: -1;
    border-radius: 7px;
}

.hoverimgs div img {
    margin-left: -100%;
}

@media only screen and (max-width: 960px){
    .splide__slide a {
        font-size: 28px;
    }

    .splide__arrows--ttb .splide__arrow--prev {
        bottom: 10px;
        left: -10px;
    }

    .splide__arrows--ttb .splide__arrow--next {
        bottom: 10px;
        right: -35px;
    }

    .splide__slide a {
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
        -webkit-text-stroke-width: 2px;
        -webkit-text-stroke-color: transparent;
    }

    .splide__slide a:hover {
        /* -webkit-text-fill-color: transparent; */
        /* -webkit-background-clip: text; */
        /* -webkit-text-stroke-width: 2px; */
        /* -webkit-text-stroke-color: transparent; */
    }

}