﻿@font-face {
    font-family: Futura-Round;
    src: url("/Fonts/Futura-Round.otf") format('opentype');
}

.landingPageContainer {
    width: 100vw;
    height: 100vh;
    height: 100svh;
    background-image: url("/Images/background.svg");
    background-size: cover;
    background-repeat: repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo{
    width: 80vw;
}

#enterBtn{
    margin-top: 20%;
    width: 60vw;
    display:none;
}

.loadingContainer{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.loadingContainer p {
    color: black;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #734A27;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.rotateWarning{
    display: none;
}

@media (orientation: landscape){
    .rotateWarning {
        position: fixed;
        font-family: Futura-Round;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
        height: 100vh;
        height: 100svh;
        background-color: #734A27;
        color: white;
        font-size: 3vw;
        overflow: hidden;
        z-index: 500;
    }
}