﻿


.PageContainer {
    position: absolute;
    top: 0;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    font-family: GillSans-SemiBold;
}

.Heading {
    display: block;
    width: 100%;
    height: 10%;
    background-color: darkorange;
}

.MainImageDiv {
    position: relative;
    width: 100%;
    height: 90%;
}

.MainImageContainer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
}
.MainImage {
    display:inline-block;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
   
}
 

.MainImageLandscape {
    display: none;
}
.letsplay {
    text-decoration: none !important;
    font-size: 20px;
}


.BottomLetsPlay {
    position: absolute;
    top: 67%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #24ADC7;
    border-radius: 31px;
    width: 271px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}


@media screen and ( orientation:landscape ) {

    .Heading {
        display: none;
    }

    .MainImage{
        display:none;
    }
    .MainImageLandscape {
        display: inline-block;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
    }


    .MainImageContainer {
        all: unset;
        position: absolute;
        top: -38px;
        left: 50%;
        transform: translateX(-50%);
        width: 82%;
        
    }

    .BottomLetsPlay {
        position: fixed;
        top: 80vh;
        left: 50%;
        transform: translateX(-50%);
        background-color: #24ADC7;
        border-radius: 31px;
        width: 271px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
    }
}