﻿
a:link, a:visited {
    color: black;
    text-decoration: none;
}


.backgroundImage {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

.mainContainer {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
 
@media screen and ( orientation:portrait ) {
    .InstructionsText {
        color: white;
        font-size: 3vh;
        width: 80%;
        text-align: center;
    }
    .ButtonContainer {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        height: 33%;
        align-items: center;
        width: 100%;
    }
    .GingerFoxButton {
        position: relative;
        background-color: White;
        color: black;
        font-family: Impact;
        font-size: 20px;
        padding: 14px 25px;
        text-align: center;
        display: inline-block;
        width: 100%;
        max-width: 300px;
        height: 48px;
        line-height: 1;
        z-index: 2;
        cursor: pointer;
    }
}

@media screen and ( orientation:landscape ) {

    .InstructionsText {
        color: white;
        font-size: 3vh;
        width: 80%;
        text-align: center;
    }
    .ButtonContainer {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
    }
    .GingerFoxButton {
        position: relative;
        background-color: White;
        color: black;
        font-family: Impact;
        font-size: 20px;
        padding: 14px 25px;
        text-align: center;
        display: inline-block;
        width: 32%;
        max-width: 300px;
        height: 48px;
        line-height: 1;
        z-index: 2;
        cursor: pointer;
    }
}