﻿@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: 5%;
    width: 60vw;
    display:none;
}

.loadingContainer{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 80%;
}
.loadingContainer p {
    color: white;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #202561;
    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;
}

#loadingBar{
    width: 10%;
    height: 5vh;
    background-color: #202561;
    border-radius: 20px;
}

#loadingBarContainer{
    position: relative;
    width: 100%;
    height: 5vh;
    background-color: gray;
    border-radius: 20px;
}

#loadingText{
    position: absolute;
    top: 50%;
    left: 50%;
    color: white;
    transform: translate(-50%, -50%);
}

@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: #202561;
        color: white;
        font-size: 3vw;
        overflow: hidden;
    }
}