@font-face {
    font-family: 'Marianne';
    src: url(../assets/fonts/Marianne-Medium.woff);
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'Marianne';
    src: url(../assets/fonts/Marianne-Bold.woff);
    font-style: normal;
    font-weight: bold;
}

body {
    margin: 0;
    padding: 0;

    --color-ochre: #a9642f;
    --color-dark: #1a1715;
    --color-white: white;

    background: var(--color-ochre);
    font-family: 'Marianne', 'sans-serif';
    display: flex;
    flex-direction: column;

    --color-accent: var(--color-ochre);
    --color-background: var(--color-dark);

    button {
        background-color: var(--color-white);
        color: var(--color-accent);
        font-weight: 700;
        font-variant: small-caps;
        font-size: 1rem;
        border: 2px var(--color-accent) solid;
        box-sizing: border-box;
        border-radius: 4px;

        &.active {
            background-color: var(--color-accent);
            color: var(--color-white);
            border: 2px var(--color-white) solid;
        }
    }
}

#screenContainer {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
}



#logoContainer {
    position: absolute;
    bottom: 1rem;
    right: calc(33vw + 1rem);
    z-index: 1;

    img {
        height: 5rem;
    }
}

#languageSelectionId {
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;

    fieldset {
        border: none;
        display: flex;
    }

    button {
        padding: 0.5rem;
        border-radius: 50%;
        margin: 0.5rem;
    }
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    height: -webkit-fill-available;
    overflow: hidden;
    height: 100%;
}

#voyagerContainer {
    position: relative;
}

#tourTextContainer {
    background-color: var(--color-dark);
    color: white;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-ochre) var(--color-dark);
    padding: 1rem;

    >div {
        min-height: 25vh;
        /* border: 2px var(--color-ochre) solid; */
    }

    img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

}

#loader {
    width: 100%;
    height: 100%;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
    position: absolute;

    .spinner {
        position: absolute;
        top: 45vh;
        left: 15vh;
        width: 30vh;
        height: 30vh;
        animation: spin 5s linear infinite;
    }

    /*"sticky-top d-flex justify-content-center"*/

    svg {
        .c1 {
            fill: none;
            fill-opacity: 1;
            stroke: #00517d;
            stroke-width: 6;
            stroke-miterlimit: 4;
            stroke-linecap: round;
            stroke-dasharray: 56.5;
            stroke-dashoffset: 0;
            stroke-opacity: 1;
        }

        .c2 {
            fill: none;
            fill-opacity: 1;
            stroke: #ffffff;
            stroke-width: 6;
            stroke-opacity: 1;
        }
    }
}

/* 
.content [data-step] {
    min-height: 55vh;
    padding-bottom: 10vh;
    font-family: "Marianne", "Arial", sans-serif, Arial, Helvetica, sans-serif;

}

.content h2 {
    color: #a9642f;
    font-family: "Marianne", "Times New Roman", serif;
    font-weight: bold;
} */
/* 
.main-dark {
    background: #1a1715;
} */
/* 
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.spinner {
    width: 50%;
    height: 50%;
    animation: spin 5s linear infinite;
} */