:root {
	--p: calc(100vmin / 2.5 / 100);
}
body {
    font-family: 'Open Sans';
    display: flex;
    flex-direction: row;
    margin: 0;
}
.no-select {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* body::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;  
    opacity: .1; 
    z-index: -1;
    background-size: 150px 150px;
} */
.l {
    width: 62vw;
    height: 100vmin;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 50vh;
}
.r {
    width: calc(100% - 62vw);
    height: 100vmin;
    float: right;
    display: flex;
    align-items: center;
    justify-content: left;
}
.title {
    color: #333;
    font-size: 50px;
    line-height: 50px;
    font-family: 'Changa', 'Open Sans';
    font-weight: 800;
    text-align: center;
}
.super-title {
    font-size: 100px;
    line-height: 100px;
}
.text {
    color: #333;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    margin: 30px 0;
    font-weight: 600;
}
.stats {
    width: 320px;
    height: 60px;
    background-image: url('/stats.png');
    background-position: center;
    background-size: contain;
    image-rendering: -webkit-optimize-contrast;
    /* margin-bottom: 10px; */
}
.promo {
    color: #333;
    /* color: #FFF; */
    font-size: 20px;
    line-height: 30px;
    white-space: nowrap;
}
.discord {
    width: 400px;
    height: 200px;
    margin: 30px 0;
    border-radius: 20px;
    overflow: hidden;
    border: 10px solid #FFF;
    background-color: #FFF;
}
.discord-image {
    width: 100%;
    height: 100%;
    background-image: url('/discord.webp');
    background-position: center;
    background-size: cover;
    border-radius: 10px;
}
.phone {
    position: relative;
    float: left;
    width: calc(var(--p) * 100);
    height: 80vmin;
    background-image: url('/phone.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    image-rendering: -webkit-optimize-contrast;
}
.phone .idea {
    position: absolute;
    text-align: center;
    width: calc(var(--p) * 60);
    height: calc(var(--p) * 100);
    top: calc(var(--p) * 30);
    left: calc(var(--p) * 20);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(var(--p) * 6);
    line-height: calc(var(--p) * 8);
    font-weight: 600;
    color: #333;
    text-shadow: 0 0 var(--p) #FFF, 0 0 var(--p) #FFF, 0 0 var(--p) #FFF;
    cursor: default;
}
.phone .button {
    width: calc(var(--p) * 29);
    height: calc(var(--p) * 29);
    background-color: #0AE;
    border-radius: 100%;
    position: absolute;
    bottom: calc(var(--p) * 34);
    left: calc(var(--p) * 33.5);
    border: calc(var(--p) * 2) solid #FFF;
    cursor: pointer;
}
/* .buttons {
    margin: 50px 0;
} */
.buttons img {
    height: 100%;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
}
.app-store,
.play-market {
    float: left;
    position: relative;
}
.app-store {
    height: 60px;
    margin: 15px;
}
.play-market {
    height: 90px;
}
.play-market2 {
    height: 76px;
    margin: 8px;
}
.languages {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.language {
    text-decoration: none;
    font-weight: 600;
    color: #FFF;
    line-height: 50px;
    font-size: 15px;
    margin: 15px;
}
.page {
    max-width: 800px;
    /*border: 3px solid green;*/
    padding: 20px;
    line-height: 150%;
}
.wave {
    position: fixed;
    z-index: -1;
    bottom: -5px;
    left: 0;
    width: 100%;
}
.boardgame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    text-align: center;
}
.boardgame a {
    color: #ee4400;
    font-weight: 600;
    font-size: 20px;
    line-height: 50px;
}
.boardgame a:hover {
    color: #0AE;
}
@media only screen and (max-width: 400px) {
    .discord {
        width: 100%;
        border-radius: 0;
    }
    .discord-image {
        border-radius: 0;
    }
}
@media only screen and (max-width: 1200px) {
    body {
        flex-direction: column;
        overflow-x: hidden;
    }
    .l {
        /* width: 100%; */
        height: auto;
        margin-top: 50px;
        height: auto;
        width: 100vw;
        float: none;
    }
    .r {
        /* width: 100%; */
        height: auto;
        /* height: 100vh; */
        float: none;
        width: 100vw;
        justify-content: center;
    }
    .title {
        font-size: 40px;
        line-height: 40px;
    }
    .super-title {
        font-size: 80px;
        line-height: 80px;
    }
    .text {
        font-size: 20px;
        line-height: 30px;
    }
    .promo {
        font-size: 15px;
        line-height: 25px;
    }
    .app-store {
        height: 48px;
        margin: 12px;
    }
    .play-market {
        height: 72px;
    }
    .play-market2 {
        height: 60px;
        margin: 6px;
    }
    .languages {
        width: 100%;
        position: relative;
        background-color: #0AF;
        /* background-color: #FFD500; */
        flex-flow: column;
        padding: 20px 0;
    }
    .language {
        line-height: 50px;
        margin: 0;
    }
    .wave {
        position: absolute;
        bottom: 385px;
    }
    .phone {
        width: calc(var(--p) * 200);
        height: 160vmin;
    }
    .phone .idea {
        width: calc(var(--p) * 120);
        height: calc(var(--p) * 200);
        top: calc(var(--p) * 60);
        left: calc(var(--p) * 40);
        font-size: calc(var(--p) * 12);
        line-height: c(var(--p) * 16);
        text-shadow: 0 0 calc(var(--p) * 2) #FFF, 0 0 calc(var(--p) * 2) #FFF, 0 0 calc(var(--p) * 2) #FFF;
    }
    .phone .button {
        width: calc(var(--p) * 58);
        height: calc(var(--p) * 58);
        bottom: calc(var(--p) * 68);
        left: calc(var(--p) * 67);
        border: calc(var(--p) * 4) solid #FFF;
    }
}
