@font-face {
  font-family: clanOT;
  src: url(fonts/ClanOT-Book.otf);
}

html, body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
    font-family: clanOT;
  }

#progress {
  width: 0;
  height: 5px;
  position: fixed;
  top: 0;
  background: #fff;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

#progress.finish {
  opacity: 0;
}

a {
  text-decoration: none;
}

circle {
  background-color: orange;
}

#menu {
  position: absolute;
  right: 50px;
  top: 50px;
  padding: 1rem;
  cursor: pointer;
  font-size: 1.2rem;
  color: white;
  transition-duration: 1s;
  background-color: rgba(0,0,0, 0.2);
  border-radius: 5px;
}

#menu:hover {
  transform: scale(1.2);
}

.info {
    max-width: 500px;
    max-height: 500px;
    min-width: 200px;
    min-height: 250px;
    background: #fcf2f0;
    color: #000;
    border-radius: 5px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .info > iframe {
    border: none;
    width:100%;
  }

  .text {
    padding: 1rem;
    text-align: center;
  }

  #logo {
    background-image: url("/images/logo.png");
    background-repeat: no-repeat;
    position: absolute;
    width: 300px;
    top: 0;
    left: 0;
    padding: 5px;
    margin: 10px;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 30px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

.active {
  color: #00b1d3 !important;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}

@media screen and (max-width: 800px) {
  #logo {
    width: 200px;
    margin: 0px
  }

  #menu {
    font-size: 1rem;
    right: 20px;
    top: 20px;
  }
}



