@font-face {
    font-family: "jabin";
    src: url("../fonts/Jabin-Typeface.ttf");
}

#ishavs, #tromsdalstindn, #floya, #nordfjelle {
    position:absolute;
    z-index: 200;
}

html,body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 0px;
    margin: 0px;
    background-color: #151A2C;
}

#main-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

#intro-texture, #main,  #main-texture {
    width: 97%;
    height: 97%;
    border-radius: 15px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

#main-texture {
    overflow: hidden;
    opacity: 0.1;
    z-index: 2;
    filter: drop-shadow(10px 10px 4px #000);
}

#intro-texture {
    overflow: hidden;
    opacity: 0.1;
    z-index: 1;
    filter: drop-shadow(10px 10px 4px #000);
}

#main-texture:after {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    box-shadow: inset 0px 0px 350px black;
}

#audio-control {
    display: none;
}

#markers {
    opacity: 0;
    z-index: 5;
}

#markers.visible {
    opacity: 1;
}

#debuginfo {
    position: absolute;
    left: 4%;
    top: 4%;
    width: 300px;
    background-color: rgba(0, 0, 0, 1);
    color: #fff;
    z-index: 100;
    font-size: 0.8em;
    opacity: 0.9;
    border-radius: 5px;
    padding: 20px;
    display: none;
}
#season-label {
    font-family: "jabin";
    position: absolute;
    top: 85%;
    font-size: 3em;
    color: #FFF;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    font-variation-settings: 'wght' 70, 'XXXX' 100;
    text-shadow: 2px 2px 2px #ff0000;
    display: none;
}

@keyframes pulse {
    from {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.map-marker {
    width: 10px;
    height: 10px;
    background-color: rgb(0,255,0,0.8);
    border-radius: 10px;
    border: 1px solid #FFF;
    animation: pulse 2s infinite;
    cursor: pointer;
}

#marker-description {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid #333;
    z-index: 6;
    left: 50%;
    top: 20%;
    transform: translate(-50%, 0%);
    width: 400px;
    color: #FFF;
    display: none;
    font-size: 0.8em;
    font-variation-settings: "wght" 200;
    padding: 20px; 
}

.debug-render-times {
    padding-left: 70px;
}