﻿body {
    overflow: hidden;
}

.PageContainer {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    overflow: hidden;
}

.TopLeftImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 47%;
}

.BottomRightImage {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 47%;
}

.TextContainer {
    /* position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    bottom: 0;
    left: 50%;
    height: 50%;
    width: 100%;
    transform: translateX(-50%);*/
    width: 70%;
    text-align: center;
}


.LogoImageContainer {
    /* border-style: solid;
    border-color: white;
    border-width: 3px;
    border-radius: 1em;*/
    width: 80%;
    z-index: 1;
}

.LogoImage {
    width: 100%;
}

.DisplayedText {
    color: white;
    font-size: 3.5vh;
}

.HeaderSpace {
    height: 10%;
}

.FooterSpace {
    height: 10%;
}


@media screen and ( orientation:landscape ) {

    .LogoImageContainer {
       /* border-style: solid;
        border-color: white;
        border-width: 3px;
        border-radius: 1em;*/
        width: 30%;
    }

    .TextContainer {
        width: 70%;
        text-align: center;
    }

    .DisplayedText {
        color: white;
        font-size: 5.5vh;
    }

    .HeaderSpace {
        height: 4%;
    }

    .FooterSpace {
        height: 4%;
    }

    .TopLeftImage {
        position: absolute;
        top: 0;
        left: 0;
        width: 31%;
    }

    .BottomRightImage {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 31%;
    }
}
