@import url('https://fonts.googleapis.com/css2?family=Zen+Kurenaido&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&family=Zen+Kurenaido&display=swap');

html body {
  margin: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 14px;
  line-height: 14px;
  color: white;
}

.hidden {
  display: none;
}

.background {
  position: fixed;
  background-image: url('/rim_01/BG-Mobile.jpg');
  background-size: cover;
  background-position: top;
  height: 100%;
  width: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.header {
  position: absolute;
  top: 2px;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 5px;
  z-index: 1; 
  border-radius: 5px;
  padding: 0px 10px 0px 10px;
  cursor: pointer;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 90%;
  left: 50%;
  padding-bottom: 60px;
  transform: translateX(-50%);
  z-index: 1; 
  cursor: pointer;
}

.footer-logo-middle {
  position: absolute;
  bottom: 2%;
  border: 1px solid white;
  background-color: transparent;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  cursor: pointer;
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: 16px;
  line-height: 14px;
  color: white;
  padding: 5px 8px 8px 8px;
}

.footer-return-middle {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 30px;
  cursor: pointer;
}

.overlay {
  position: absolute;
  background-color: rgba(0,0,0,0.9);
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
  overflow: hidden;
}

.centered {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.logo-cool {
  width: 120px;
  cursor: pointer;
}

.logo-heem {
  width: 100px;
  cursor: pointer;
}

.logo-legendary {
  width: 100px;
  cursor: pointer;
}

span {
  cursor: pointer;
}

/* DESKTOP */
@media screen and (min-width: 900px) {
  .background {
    background-image: url('/rim_01/BG-Large.jpg');
  }
  .header {
    width: 40%;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer {
    width: 40%;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 5%;
  }
  .footer-logo-middle {
    width: 20%;
  }
}