﻿

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: center;
    align-items: center;
}

@media screen and ( orientation:portrait ) {
    .ContentContainer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .Content {
        width: 90vw;
        height: auto;
        position: relative;
    }

    .logo {
        width: 87%;
    }

    .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 ) {
    .ContentContainer {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        margin-left: 20px;
    }

    .Content {
        width: 76vw;
        height: auto;
        position: relative;
    }

    .logo {
        Height: 47%;
        margin-bottom: 30px;
    }

    .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;
    }
}

.GFlogoImage {
    width: 100%;
}



@keyframes GFlogo {
    0% {
        right: -16%;
    }


    100% {
        right: 0%;
    }
}

.copyright {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0px;
    font-family: 'impact';
    font-size: 9px;
    color: white;
    text-align: center;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}

@media screen and ( orientation:portrait ) {
    .GFlogoPortrait {
        display: block;
        position: absolute;
        top: 0%;
        right: -16%;
        width: 16%;
        z-index: 124;
        max-width: 131px;
        animation-name: GFlogo;
        animation-duration: 2s;
        animation-delay: 2s;
        animation-fill-mode: forwards;
    }
}

@media screen and ( orientation:landscape ) {

    .GFlogoPortrait {
        display: block;
        position: absolute;
        top: 0%;
        right: -16%;
        width: 11%;
        z-index: 124;
        max-width: 123px;
        animation-name: GFlogo;
        animation-duration: 2s;
        animation-delay: 2s;
        animation-fill-mode: forwards;
    }
}