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

    font-family: 'bio-sans', sans-serif;
    font-weight: 400;
    font-style: normal;
}

.splash-screen {
    width:100vw;
    height:100vh;
    /*max-height:100vh;*/
    position:fixed;

    padding: 15vh 12%;

    background: #1c2237;
    background-image: url("../images/trystler_watermark.png"), linear-gradient(#1c2237, #343b62);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: -10%;
}
.splash-container {
    display:flex;
    flex-direction: row;
}
.splash-content {
    flex:1.2;
    display:flex;
    flex-direction: column;
}
.splash-logo {
    padding-bottom:8vh;
}
.splash-text {
    color:#ffffff;
    font-size:3.2vw;
    text-transform: uppercase;
    line-height:1.4;
}
.soon-text {
    color:#ffffff;
    font-size:2.4vw;
    text-transform: uppercase;
    line-height:1.4;
    font-style: italic;
    padding-top:40px;
}
.splash-button-container {
    width:100%;
    text-align: center;
}
.splash-button {
    background: linear-gradient(to right, #E53974 20%, #DF6E57 60%, #D76616 100%);
    border-radius: 20px;
    width: 40%;
    margin-top: 25px;
    padding: 2px;
    text-align: center;
    font-size: 1.4vw;
    text-transform: uppercase;
}
.splash-button-inner {
    padding: 10px;
    border-radius: 17px;
    background:#282D4D;
    width:100%;
}
.splash-button a {
    color:white;
    font-weight:500;
    text-decoration: none;
}

.splash-content img {
    width:40%;
}
.splash-image {
    flex:1;
    display:flex;
    flex-direction: column;
    justify-items:flex-end;
    align-items: flex-end;
}
.splash-image img{
    width:40%;
}
.splash-footer {
    color:white;
    display:block;
    position:absolute;
    bottom:15px;

    width:100%;
    text-align: center;
    font-size:20px;

    left:0px;
    padding-right: 12%;
    padding-left: 12%;
}
.splash-download{
    padding-top:8vh;
}
@media screen and (max-width: 1024px) {
    .splash-screen {
        width:100%;
        height:100%;

        padding: 10vh 5%;
        overflow:scroll;
    }
    .splash-container {
        flex-direction: column;
        justify-content: center;
        align-content: center;
        justify-items: center;
        align-items: center;
    }
    .splash-content {
        flex:1;
    }
    .splash-content img {
        width:60%;
    }
    .splash-logo {
        text-align: center;
        padding-bottom:5vh;
    }
    .splash-text {
        color:#ffffff;
        font-size:5vw;
        text-align: center;
        padding-bottom:2vh;
    }
    .soon-text {
        text-align: center;
        padding-top:10px;
        font-size:3.8vw;
    }
    .splash-download {
        padding-top:0vh;
        width:100%;
        text-align: center;
        margin-bottom:20px;
        display:flex;
        flex-direction: column;
        justify-items: center;
    }
    .splash-button {
        width: 50%;
        font-size: 3vw;
        align-self: center;
    }
    .splash-image {
        justify-items:center;
        align-items: center;

        padding-bottom:5vh;
    }
    .splash-image img{
        width:50%;
    }
    .splash-footer {
        position:relative;
    }
}
@media screen and (orientation: landscape) and (max-width: 1024px){

}
