html,body{
    margin: 0;
}
body{
    position: relative;
    height: 100vh;
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: flex-end;
    overflow: hidden;

    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -khtml-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}
body .wrapper{
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
}
body .wrapper .dashboard{
    position: fixed;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    padding: 20px;
}
body .wrapper .dashboard .stat{
    text-transform: uppercase;
    text-align: center;
}
body .overlay{
    color: #fff;
    text-align: center;
    padding: 20px;
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(10, 21, 50);
    background-size: contain;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
}
.banner{
    position: absolute;
    z-index: 999999999;
    top:0;
    left: 50vw;
    transform: translateX(-50%);

    image-rendering: pixelated;
}
.snow{
    position: absolute;
    z-index: 20;
    bottom:0;
    left:0;
    width: 100%;
    image-rendering: pixelated;
}
.guy-intro, .guy-outro{
    display: none;
    position: absolute;
    z-index: 20;
    bottom:0;
    left: 50vw;
    transform: translateX(-50%);
    height: 30vh;
    image-rendering: pixelated;
}
.guy-intro.active, .guy-outro.active{
    display: block;
}
body .overlay.active{
    opacity: 1;
    pointer-events: all;
}
body .overlay > div {
    max-width: 600px;
    display: none;
}
body .overlay.active > .active:not(img){
    display: block;
    z-index: 999;
    padding: 30px;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    background-color: rgba(0,0,0,0.2);
}
body .overlay.active > .active > h1, body .overlay.active > .active > h3{position: relative}
.btn-cta{
    display: inline-block;
    position: relative;
    cursor: pointer;
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    padding: 14px 28px;
    transition: .3s;
    width: fit-content;
    z-index: 999;
}
.btn-cta:before{
    content: "";
    position: absolute;
    z-index: 9;
    top:0;
    left: -20px;
    width: calc(100% + 40px);
    height: 100%;
    transform: skew(-45deg);
    background-color: #ff0000;
    transition: .3s;
}
.btn-cta > span{
    position: relative;
    z-index: 9;
}
.btn-cta:hover:before{
    background-color: #b7170f;
}

body .overlay > .snow-wrapper{
    display: block;
}

body .mobile{
    display: none;
    position: fixed;
    bottom: 0;
    bottom: env(safe-area-inset-bottom);
    left: 0;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    z-index: 8;
}
body .mobile > div{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px solid #000;
}
body .mobile #left, body .mobile #right{
    flex: 1;
}
body .mobile #jump{
    flex:3;
    margin: 0 10px;
}
@media (max-width: 1200px) {
    body .mobile{
        display: flex;
    }
}
@media (max-width: 540px) {
    body{
        font-size: 14px;
    }
    body .overlay.active > .active:not(img){
        padding: 10px;
    }
    .guy-intro, .guy-outro{
        height: 20vh;
    }
    .banner{
        top: -100px;
    }
}

.popup{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 320px;
    background-color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.popup .close{
    position: absolute;
    top:5px;
    right: 5px;
    cursor: pointer;
}
.popup h2{
    display: flex;
    flex-direction: column;
    text-align: center;
}
.popup h2 small{
    margin-top: 15px;
}