﻿
body {
    overflow: scroll!important;
}

a {
    color: white;
    text-decoration: none; /* no underline */
}

    a:hover {
        color: white;
        text-decoration: none;
        cursor: pointer;
    }
@media screen and ( orientation:portrait ) {
    .Landscape {
        display: none;
    }
}

@media screen and ( orientation:landscape ) {
    .Landscape {
        position: fixed;
        display: block;
        top: 0;
        height: 100vh;
        left: 0;
        right: 0;
        z-index: 4;
        background-color: #431067;
        font-size: 35px;
        color: white;
    }
}
.DisplayNone {
    display: none !important;
}

.Cursor {
    cursor: pointer;
}

.BACKImage {
    position: absolute;
    top: 3px;
    left: 20px;
    width: 12%;
    cursor: pointer;
}

.HeaderContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.Header {
    width: 100%;
}

.HeaderImage {
    width: 100%;
}

.HeaderText {
    width: 100%;
    color: white;
    
    height: 90px;
    font-size: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mainContainer {
    position: absolute;
    top: 14vw;
    left: 0px;
    right: 0px;
    background-color: #fe7902;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.InstructionText {
    width: 80%;
    font-size: 2.4vh;
    color: white;
    text-align: center;
    background-color: rgb(67,16,103);
    padding: 23px;
}
.StartGame {
    background-color: #8401df;
}
.GingerFoxButtonStyle {
    position: relative;
    padding: 14px 25px;
    text-align: center;
    display: inline-block;
    border-radius: 25px;
    max-width: 300px;
    height: 48px;
    box-shadow: rgb(6 6 6 / 53%) 0px 3px 6px, #343a40 0px 3px 6px;
    -webkit-box-shadow: none;
    line-height: 1.3;
    z-index: 2;
}