/*https://codepen.io/anon/embed/PJGqdE?height=500&theme-id=1&slug-hash=PJGqdE&default-tab=result#result-box shoutout*/

html, body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.sidebar {
    width: 30%;
    padding: 150px 0 0 40px;
    z-index: 2;
}

.wrapper {
    background-image: url(/img/loginbg.webp);
    background-size: cover;
    background-position: center;
}

.diter_slides {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.bannerContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(50%, -50%, 0);
    color: white;
    font-family: var(--body-font);
    line-height: 0.8;
    letter-spacing: -0.025em;
    z-index: 2;
    opacity: 1;
    text-shadow: 0 0 0.5em rgba(179, 64, 26, 0.25);
    background: linear-gradient(180deg, #00c3ff7d, #59566b12);
    padding: 40px;
}
.bannerContent span {
    display: block;
    font-size: 15vmin;
}
.button {
    font-family: 'Roboto Mono', sans-serif;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 2vmin;
    display: inline-block;
    position: relative;
    border: 3px solid white;
    box-shadow: -0.5vmin 0.5vmin 0 rgba(255, 255, 255, 0.5);
    background: transparent;
    margin-top: 5vmin;
    mix-blend-mode: lighten;
    color: white;
    padding: 2vmin 2vmin 1.8vmin 2vmin;
    letter-spacing: 0.1em;
    text-shadow: none;
    line-height: 1;
    transform: translate3d(0.5vmin, -0.5vmin, 0);
    transition: all 100ms linear;
}
.button:hover {
    transform: translate3d(1vmin, -1vmin, 0);
    box-shadow: -1vmin 1vmin 0 rgba(255, 255, 255, 0.5);
    background: white;
    color: black;
}
.button:active {
    transform: translate3d(0px, 0px, 0);
    box-shadow: 0px 0px 0 rgba(255, 255, 255, 0.5);
}
