* {
    margin: 0;
    font-family: 'Press Start 2P', cursive;
    /*font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;*/
    text-decoration: none;
    color: white;
}

body{
    background: rgb(48, 51, 43);
}


header{
    background-color: rgb(38, 41, 43);
    height: 8vh;
    display: flex;
    justify-content: center;
    width: 99%;
}
.headerCenter {
    background: rgb(38, 41, 43);
    border: solid 5px rgb(75, 75, 75);
    border-right: rgb(38, 41, 43); 
    border-top: rgb(38, 41, 43);   
    position: fixed;
    width: 100%;
    height: 9vh;
    z-index: 4;
    font-size: 3vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    right: 0;
}

.headerDivName{
    width: fit-content;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.logo{
    height: 9vh;
    image-rendering: pixelated;
}
.headerDivName>p{
    width: fit-content;
    height: max-content;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition-duration: 0.3s;
    background-color: white;
}
.dropdown.active .bar:nth-child(2){
    opacity: 0;
}
.dropdown.active .bar:nth-child(1){
    transform: translateY(8px) rotate(45deg);
}
.dropdown.active .bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
}

.dropdown{
    margin-right: 5vw;
}

.headerDivSites{
    position: fixed;
    text-align: center;
    left: 100vw;
    top: 11vh;
    flex-direction: column;
    background: rgb(38, 41, 43);
    border: solid 5px rgb(75, 75, 75);
    border-left: none;
    border-right: none;
    width: 100vw;
    transition: 0.3s ease-in-out;
}
.headerDiv{
    margin: 2vh;
}
.headerDivSites.active{
    left: 0;
}
.mainUp {
    background-position: 0 -10vh;
    background-image: url(../images/Sprites/Icons/Game02.png);
    background-repeat: no-repeat;
    background-size: 100vw;
    height: calc(1.2 * 100vw);
}

.mainDown {
    background-color: rgb(48, 51, 43);
    display: flex;
    align-items: center;
    flex-direction: column;
    top: 0;
    width: auto;
    font-size: 11px;
}
.downCenter {
    background: rgb(38, 41, 43);
    border: solid 5px rgb(75, 75, 75);
    border-top: solid 5px rgb(129, 129, 129);
    border-left: solid 5px rgb(129, 129, 129);
    width: 80vw;
    height: 7vh;
    margin-top: -5vh;
    padding: 1vh 0vw;
    z-index: 2;
    font-size: 3vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: 1s; 
}

.downCenter:hover {
    animation: downCenterAnim 2s cubic-bezier(0.77, 0, 0.175, 1) infinite reverse;
    background: rgb(50, 50, 50);
}

@keyframes downCenterAnim {
    from {
        transform: scale(1,1);
    }

    50% {
        transform: scale(1.2,1.2);
    }
    to {
        transform: scale(1,1); 
    }
}

.downCenter:hover{
    transform: rotateX('10deg');
}
.downInfo {
    background: linear-gradient(-20deg, rgb(17, 26, 34) 0%, rgb(36, 56, 66) 100%);
    width: 80vw;
    height: fit-content;
    overflow-y: visible;
    padding-top: 8vh;
    padding-left: 10vw;
    padding-right: 10vw;
    margin-top: -5vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    border-top: solid 5px rgb(129, 129, 129);
}

.info01{
    background: rgb(38, 41, 43);
    border: solid 5px rgb(75, 75, 75);
    border-top: solid 5px rgb(129, 129, 129);
    border-left: solid 5px rgb(129, 129, 129);
    width: fit-content;
    min-width: 80vw;
    height: fit-content;
    padding: 3vh 0;
    line-height: 2;
    display: flex;
    justify-content: center;
    align-items:center;
    flex-direction: column;
    margin-bottom: 10px;
}

.info01>div>h3{
    border-bottom: 1px solid rgb(255, 255, 255);
}
.info01>div{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items:center;
    left: 0;
}

.info02{
    background: rgb(38, 41, 43);
    border: solid 5px rgb(75, 75, 75);
    border-top: solid 5px rgb(129, 129, 129);
    border-left: solid 5px rgb(129, 129, 129);
    width: fit-content;
    min-width: 80vw;
    height: fit-content;
    padding: 3vh 0;
    line-height: 2;
    display: flex;
    justify-content: baseline;
    align-items: center;
    flex-direction: column;
}

.info02>div{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items:center;
}



@media only screen and (min-width: 768px)  and (orientation: landscape) and (min-aspect-ratio: 3/6){
    .downInfo {
        flex-direction: row;
    }

    .info02{
        width: 40vw;
        min-width: fit-content;
        margin: 0vh 1vw;
    }
    .info01{
        width: 40vw;
        margin: 0vh 1vw;
        min-width: fit-content;
    }
    .mainUp{
        background-position: 0 0;
        background-image: url(../images/Sprites/Icons/Game01.png);
        height: calc(0.53 * 100vw);
    }

    .mainDown {
        background-color: rgb(48, 51, 43);
        height: 90%;
        display: flex;
        align-items: center;
        flex-direction: column;
        top: 0;
        width: 99%;
        font-size: 15px;
    }

    .headerCenter {
        background: rgb(38, 41, 43);
        border: solid 5px rgb(75, 75, 75);
        border-right: rgb(38, 41, 43); 
        border-top: rgb(38, 41, 43);   
        position: fixed;
        width: 100vw;
        height: 9vh;
        z-index: 4;
        font-size: 3vh;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
    }
    .headerDivSites{
        display: flex;
        position: relative;
        flex-direction: row;
        margin-right: 1vw;
        gap: 1vw;
        height: 9vh;
        left: auto;
        text-align: center;
        top: 0vh;
        border:none;
        background:none;
        width: fit-content;
    }

    .headerDivName{
        display: flex;
        image-rendering: pixelated;
        padding: 0vh 1vw;
        opacity: 1;
    }
    

    .headerDivName>p{
        width: fit-content;
        height: max-content;
    }
    .headerDiv {
        height: 9vh;
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0vh 1vw;
        opacity: 1;
    }

    .headerDivName:hover {
        cursor: pointer;
    }

    .headerDiv:hover {
        background-color: rgb(48, 51, 53);
        cursor: pointer;
    }

    .info01,.info02{
        min-height: 50vh;  
        height: fit-content;     
    }   

    .downCenter{
        width: 20vw;
    }

    .dropdown{
        display: none;
    }
}






