* {
    font-family: 'Montserrat', 'sans-serif';
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    width: 100vw;
}

.logo-display {
    position: fixed;
    width: 50vw;
    height: 100vh;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-image: url("../images/KBR_BackgroundEmpty.png");

    img {
        height: 300px;
        width: auto;
    }
}

.privacy-policy-display {
    width: 50vw;
    float: right;
    padding: 50px;
    background-color: #012008;

    color: white;
    overflow-y: scroll;

    h1, h2, h3, h4 {
        color: #add804;
    }

    strong {
        color: #add804;
    }

    a {
        color: #014a09;
    }

    a:hover {
        background-color: #add804;
        color: #014a09;
    }

    a:visited {
        color: #014a09;
    }
}

.loading-screen {
    position: absolute;
    float: left;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 30;
    background-color: #012008aa;
    backdrop-filter: blur(16px);

    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    opacity: 1;
    visibility:visible;

    img {
        width: auto;
        height: 200px;
    }

    svg {
        margin-top: 30px;
        transform: scale(2);
        path {
            stroke: #add804;
        }
    }

    transition: all 0.5s ease-in-out;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    z-index: -30;
    transition: all 0.5s ease-in-out;
}

body:has(.loading-screen:not(.hidden)) {
    overflow: hidden;
}
