﻿@font-face {
    font-family: Burford;
    src: url("/Fonts/burford-base.ttf") format('truetype');
}

.landingPageContainer {
    width: 100vw;
    height: 100vh;
    height: 100svh;
    background-image: url("/Images/background.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo{
    width: 80vw;
}

#enterBtn{
    margin-top: 20%;
    width: 50vw;
    display:none;
}

.loadingContainer{
    width: 80%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 10vh;
}

#loadingBar{
    width: 10%;
    height: 5vh;
    background-color: #C22936;
    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%);
}

.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: Burford;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
        height: 100vh;
        height: 100svh;
        background-color: #C22936;
        color: white;
        font-size: 3vw;
        overflow: hidden;
        z-index: 500;
    }
}