﻿



body {
    background-color: #CC000F;
}

.mainContainer {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: #CC000F;
}

.ImageContainer {
    position: absolute;
    z-index: 1;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    max-height: 546px;
}

.ContentContainer {
    background-color: #28A3DD;
    position: absolute;
    top: 10%;
    left: 11%;
    right: 24%;
    bottom: 10%;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.MainImage {
    position: relative;
    z-index: 1;
    height: 100%;
    max-height: 546px;
    pointer-events: none;
}

.InroText {
    color: white;
    font-size: MIN(5vh, 29px);
    text-align: center;
    margin-left: 30px;
    margin-right: 34px;
    line-height: 1.2;
    margin-top: 8px;
}

.StartGame {
    color: white;
    background-color: #FFB800;
    font-size: MIN(11vh, 56px);
    height: 55px;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    padding-bottom: 10px;
}

.OtherLinks {
    height: 100px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.Cloudimage {
    width: MIN(18vw, 184px);
}



@media screen and ( orientation:portrait ) {
    .Landscape {
        display: block;
        z-index: 4;
        position: absolute;
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        background-color: #CC000F;
        font-size: 3.2vh;
        color: white;
    }
    .ImageContainer {
        display: none;
    }
}
@media screen and ( orientation:landscape ) {
    .Landscape {
        display:none;
    }
}
   