﻿

@media screen and ( orientation:portrait ) {

    .LandscapeImageRight {
        display: none;
    }
    .LandscapeImageLeft {
        display: none;
    }
}
.ImageLeft {
    position: absolute;
    top: 21%;
     
    height: 53%;
    left: 0%;
    width: 20%;
    overflow: hidden;
    background-image: url(/Images/StartEndPages/MM_LANDING_LEFT.png);
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}
.ImageRight {
    position: absolute;
    top: 47%;
    transform: translateY(-50%);
    height: 50%;
    right: 0%;
    width: 20%;
    overflow: hidden;
    background-image: url(/Images/StartEndPages/MM_LANDING_RIGHT.png);
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}
.ImageTop {
    position: absolute;
    left: 0;
    /* transform: translateX(-50%); */
    height: 100%;
    top: 0%;
    width: 100%;
    overflow: hidden;
    background-image: url(/Images/StartEndPages/MM_LANDING_TOP.png);
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}
.ImageBottom {
    position: absolute;
    
    height: 100%;
    bottom: 0%;
    width: 100%;
    overflow: hidden;
    background-image: url(/Images/StartEndPages/MM_LANDING_BOTTOM.png);
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
   
}

.PageContainer {
    position: absolute;
    display: flex;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-evenly;
    align-content: center;
    align-items: center;
}
.TextContainer{
    width:80%;
}
.DisplayedText {
    text-align: center;
    color: white;
    font-size: 3vh;
    font-family: Montserrat-Regular;
}

.HeaderSpace{
    height:10%;
}
.FooterSpace {
    height: 10%;
}


@media screen and ( orientation:landscape ) {

    .Br{
        display:none;
    }
    .DisplayedText {
        text-align: center;
        color: white;
        font-size: 3vw;
        font-family: Montserrat-Regular;
    }

    .ImageLeft {
        display: none;
    }

    .ImageRight {
        display: none;
    }

    .ImageTop {
        display: none;
    }

    .ImageBottom {
        display: none;
    }

    .LandscapeImageRightContainer {
        position: absolute;
        top: 0;
        height: 100%;
        right: 0%;
        width: 50%;
        overflow: hidden;
    }
    .LandscapeImageRight {
        position: absolute;
        right: 0;
        height: 100%;
    }

    

    .LandscapeImageLeftContainer {
        position: absolute;
        top: 0;
        height: 100%;
        left: 0%;
        width: 50%;
        overflow: hidden;
    }
    .LandscapeImageLeft {
        position: absolute;
        left: 0;
        height: 100%;
    }
}
