﻿body {
    overflow: hidden;
}
.PageContainer {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    overflow: hidden;
    background-color: #124995;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.HeaderImageContainer {
    position: relative;
    top: 0;
    width: 100%;
    height: 38%;
    background-color: #124995;
}

@media screen and ( orientation:portrait ) {

    .HeaderImage {
        display: block;
        position: relative;
        width: 51vh;
        transform: translateX(-50%);
        left: 50%;
        top: 0%;
        max-width: 800px;
    }

    .HeaderImageLandscape {
        display: none;
    }
    .BottomImageLandscape {
        display: none;
    }
}

.TextContainer {
    width: 100%;
    height: 50%;
    background-color: #26B7DA;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.IntroText {
    width: 75%;
    font-size: min(3vh, 5vw);
    font-family: AvenirNextCondensed-Medium;
    text-align: center;
    color: white;
}

.GingerFoxButtonContainer {
    position: relative;
    display:flex;
    justify-content: center;
    background-color: #FBD560;
    /*   padding: 14px 25px;*/
   /* text-align: center;*/
 
    border-radius: 25px;
    width: 39%;
    max-width: 300px;
    height: 48px;
    box-shadow: rgb(6 6 6 / 53%) 0px 0px 0px, #343a40 2px 1px 6px;
    line-height: 1.3;
    z-index: 2;
}
.GingerFoxButton {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
}

img.GFButtonImage {
    position: absolute;
    margin-left: 11px;
    top: -7px;
    width: 19px;
}

.GingerFoxButtonContainer a:link, .GingerFoxButtonContainer a:visited {
    color: #124995;
    text-decoration: none;
    position: relative;
    left: -5px;
    top: 3px;
}
.footerSpace {
    height: 62px;
}

.BottomImage {
    position: absolute;
    width:33%;
    bottom: 0px;
   
    right: 0px;
}
.LeftImage {
    position: absolute;
    height: 50%;
    left: 0;
    bottom: 0;
}
.RightImage {
    position: absolute;
    height: 50%;
    right: 0;
    bottom:0;
}


@media screen and ( orientation:landscape ) {
    .HeaderImageLandscape {
        display: block;
        position: relative;
        width: 95vh;
        transform: translateX(-50%);
        left: 50%;
        top: 17%;
        max-width: 1026px;
    }

    .HeaderImage {
        display: none;
    }
    .IntroText {
        width: 82%;
        font-family: AvenirNextCondensed-Medium;
        font-size: 6vh;
        
        text-align: center;
        color: white;
    }
    .TextContainer {
        width: 100%;
        height: 55%;
        background-color: #26B7DA;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }
    .GingerFoxButtonContainer {
        position: relative;
        background-color: #FBD560;
        /* padding: 14px 25px;*/
        text-align: center;
     
        border-radius: 25px;
        width: 25%;
        max-width: 300px;
        height: 48px;
        box-shadow: rgb(6 6 6 / 53%) 0px 0px 0px, #343a40 2px 1px 6px;
        line-height: 1.3;
        z-index: 2;
    }
    .GingerFoxButton {
        position: absolute;
        left: 50%;
        transform: translate(-50%);
        margin-top: 10px;
    }
    img.GFButtonImage {
        
        position: absolute;
        margin-left: 11px;
        top: -6px;
        width: 19px;
    }

    .GingerFoxButtonContainer a:link, .GingerFoxButtonContainer a:visited {
        color: #124995;
        text-decoration: none;
        position: relative;
        left: -5px;
        top: 3px;
    }
    .BottomImage {
        display: none;
    }
    .BottomImageLandscape {
        position: absolute;
        width: 100%;
        right: 0;
        bottom: 0;
    }
}