@import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100;0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');


canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
body {
    color: white;
    font-family: 'Overpass', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 98vh;
}
h1 {
    font-size: 9vw;
    font-weight: 900;
  line-height: 8vw;
}
h2 {
    font-size: 9vw;
    font-weight: 900;
    line-height: 8vw;
    margin-left:-6px;
}
p {
    font-size: 2vw;
    font-weight: 100;
    line-height: 2.5vw;
}
a, a:hover {
  text-decoration: none;
}
.btn-white, .btn-white:visited {
    background: white;
    border: solid 1px white;
	color: black;
    border-radius: 300px;
  	transition: all 1s;
}
.btn-white:hover, .btn-white:active {
    background: black;
    border: solid 1px black;
  	color: white;
}

#zoom-factor-p {
    display:none;
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

/* Hide all elements per Default */
#zoom-content h1,
#zoom-content div {
    display:block;
    opacity: 0;
    transition: opacity 3s, transform 50s;
    transform-origin: left;
    position: fixed;
    left: 10vw;
    right: 25vw;
    top: 50%;
    transform: translateY(-50%) scale(1);
}
#zoom-content h2,
#zoom-content p {
    transition: transform 50s;
}

.visible {
    opacity: 1 !important;
    transform: translateY(-50%) scale(1.2) !important;
}



.info {
    position: fixed;
    top: 15px;
    right: 15px;
    font-size: 20px;
    transition: all 2s;
}
.playBtn, .playBtnOuter {
    position: fixed;
    top: 50px;
    right: 10px;
    font-size: 20px;
    transition: all 2s;
    z-index: 99999;
    background: transparent;
    border: none;
    color: #ffffffba;
}
.refreshBtn {
    position: fixed;
    top: 90px;
    right: 15px;
    font-size: 20px;
    transition: all 2s;
    z-index: 99999;
    background: transparent;
    border: none;
    color: #ffffffba;
}
footer {
      z-index: 9999999;
}
.footerLogo {
    height: 50px;
    position: fixed;
    right: 35px;
    bottom: 52px;
}
.footerText {
	position: fixed;
    right: 56px;
    bottom: 30px;
    font-size: 13px;
}

.load {
    position: absolute;
    width: 100vw;
    height: 102vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
    z-index: 999999;
    animation: fadeOut 2s 4s forwards; /* Start fade out after 5 seconds, duration 2 seconds */
    pointer-events: none;
}

.load p {
    position: absolute;
    margin-top:	200px;
}

.spinner {
	border: 5px solid #f3f3f3;
    border-top: 5px solid #d4d4d4;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin-top: -100px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
        @keyframes fadeOut {
            0% { opacity: 1; }
            100% { opacity: 0; }
        }

@media (max-width: 1199px) {
  #zoom-content h1, #zoom-content div {
    width: 70vw;
}
    p {
		font-size: 3.5vw;
        font-weight: 100;
        line-height: 4vw;
    }
  }
@media (max-width: 768px) {
  #zoom-content h1, #zoom-content div {
    width: 70vw;
}
    p {
		font-size: 4vw;
        font-weight: 100;
        line-height: 4.5vw;
    }
#zoom-content h1,
#zoom-content div {
    transition: opacity 3s, transform 70s;
    transform-origin: center;
    left: 50%;
    right: unset;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.visible {
    transform: translate(-50%, -50%) scale(1.2) !important;
}  
  .legend, .playBtn, .playBtnOuter, .info, .refreshBtn {
    font-size: 15px !important;
  }
.info {
    top: 15px;
}  
.playBtn, .playBtnOuter {
    top: 41px;
}  
  .refreshBtn {
    top: 68px;
}
  canvas {
    filter: brightness(0.5);
}
  }
@media (max-width: 500px) {
  #zoom-content h1, #zoom-content div {
    width: 70vw;
}
    p {
        font-size: 5vw;
        font-weight: 100;
        line-height: 5.5vw;
    }
  }

#cconsent-bar {
    z-index: 99999999 !important;
}