﻿
body {
    background-color: #CC000F;
}

.mainContainer {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: #CC000F;
}

.BackImage {
    margin-top: 10px;
    width: 39%;
    display: block;

}

.BackImageLink {
    position: absolute;
    font-size: 25px;
    width: 12%;
    z-index: 2;
 
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: flex-start;
    justify-content: space-between;
}

.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: 10%;
    right: 24%;
    bottom: 10%;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.ContentContainerOff {
    background-color: Black;
    position: absolute;
    top: 10%;
    left: 10%;
    right: 24%;
    bottom: 10%;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.MainImage {
    position: relative;
    z-index: 1;
    height: 100%;
    max-height: 546px;
    pointer-events: none
}

.RollDiseBlank {
    height: 52px;
}

.RollDise {
    background-color: #FFB800;
    position: absolute;
    width: 77%;
    height: 65px;
    top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.Cat {
    color: white;
    font-size: clamp(16px, 7vh, 32px);
    height: clamp(16px, 8vh, 47px);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.CatSelected {
    background-color: black;
}

@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;
    }
    .mainContainer {
        display: none;
    }
}

@media screen and ( orientation:landscape ) {
    .Landscape {
        display: none;
    }
   
}