body {
  width: 100vw;
  height: 100vh;
}

.play-container {
  width: 100vw;
  height: 100vh;
  background-color: black;
  position: relative;
}

.overlay-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  opacity: 0.5;
  filter: blur(0.7px);
  background: url(assets/ui/play_background.png);
  background-repeat: no-repeat;
  background-size: auto 465px;
  background-position-y: -100px;
  background-position-x: -50px;
}

.overlay-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  background: url(assets/ui/play_lightsource.png);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 75%;
}

.content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;

  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 40px;
}

.title {
  font-weight: 600;
  font-size: 2.16rem;
  color: white;

  margin-top: 20px;
  margin-bottom: 5px;
}

.times-left {
  background-color: #ffe4dd;
  color: #ff4210;
  border: 1px solid #ff4210;
  border-radius: 1rem;

  padding: 4px 15px;

  font-weight: 500;
  font-size: 0.78rem;

  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 60px;
}

.button-play {
  font-family: "PlusJakartaSans";
  font-weight: 700;
  font-size: 0.9rem;
  width: 100%;
  padding: 17px;
  border-radius: 12px;
  color: white;
  text-align: center;
  background-color: #1f2937;
  margin-bottom: 15px;
}

.button-scoreboard {
  font-family: "PlusJakartaSans";
  font-weight: 700;
  font-size: 0.9rem;
  width: 100%;
  padding: 17px;
  border-radius: 12px;
  color: white;
  text-align: center;
  background-color: #14ab52;
}

.hulk {
  height: 350px;
  user-select: none;
  touch-action: manipulation;
}

.hulk-container {
  position: fixed;
  height: 450px;
  bottom: -450px;
  margin-left: auto;
  margin-right: auto;
  width: 100vw;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  touch-action: manipulation;
  display: flex;
  justify-content: center;
}

.hulk-small {
  height: 200px;
  user-select: none;
  touch-action: none;
  margin-right: -40px;
}

.hulk-small-container {
  position: fixed;
  height: 250px;
  bottom: -250px;
  margin-left: auto;
  margin-right: auto;
  width: 100vw;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  touch-action: none;
  display: flex;
  justify-content: end;
}

.hulk-name-container {
  position: fixed;
  width: 100vw;
  bottom: 375px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  touch-action: manipulation;
}

.hulk-name {
  width: 300px;
  user-select: none;
  touch-action: manipulation;
}

.overlay {
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  touch-action: manipulation;
  background-color: black;
  opacity: 0;
}

.fade-in {
  opacity: 0.5;
  transition: 1s;
}

.fade-out {
  opacity: 0;
  transition: 1s;
}
