#overlay {
  position: fixed;
  left: 0svw;
  top: 0svh;
  width: 100svw;
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: left 0.5s ease-in-out;
  z-index: 1;
  color: white;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

#overlay > .cover {
  position: fixed;
  height: 100svh;
  object-fit: cover;
}

@media (min-aspect-ratio: 1/1) {
  #overlay > .cover {
    width: 100svw;
    height: unset;
  }
}

#overlay > #icon1 {
  position: fixed;
  top: 10svh;
  height: 16svw;
}

#overlay > #icon2 {
  display: none;
  position: fixed;
  top: 10svh;
  height: 16svw;
}

.rect1 {
  display: block;
}

.rect2 {
  display: none;
}

#overlay > #text-container {
  position: fixed;
  color: white;
  font-size: 2svh;
  font-weight: 100;
  font-style: normal;
  font-family: BuckeyeSans2;
  text-align: center;
  width: 60svw;
  color: white;
  z-index: 1;
  bottom: 15svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2svh;
  align-items: center;
}

@media (min-aspect-ratio: 2/3) {
  #overlay > #icon1 {
    top: 45svh;
    height: 7svh;
    left: 10svw;
  }

  #overlay > #icon2 {
    display: block;
    top: 45svh;
    height: 7svh;
    right: 10svw;
  }

  .rect1 {
    display: none;
  }

  .rect2 {
    display: block;
  }

  #overlay > #text-container {
    flex-direction: row;
    justify-content: space-between;
    width: 80svw;
    bottom: 10svh;
  }
}


/* ======================= skip overlay ========================== */

#skip{
  position: fixed;
  font-family: "BuckeyeSans2";
  width: 100svw;
  height: 5svh;
  display: flex;
  justify-content: center;
  bottom: 7.5svh;
  transition: opacity 0.5s ease-in-out;

  visibility: hidden;
  opacity: 0;
}

#skip > #skip-button {
  background-color: var(--osuRed);
  color: white;
  border-color: white;
  border-radius: 13px;
  border-style: solid;
  padding: 0px 20px;
  text-transform: uppercase;
  font-weight: 900;
}