@charset "UTF-8";
/* Theme: Geeks */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");html,


body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

/* Set full-page background color based on type */
body.real {
  background-color: #009639;
}

body.fake {
  background-color: red;
}

.overlay-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.label-box {
  display: inline-block;
  padding: 4vw 6vw;
  border-radius: 2vw;
  color: white;
  /* background-color: rgba(0, 0, 0, 0.2); */
}

/* Big bold text */
.label-box .top-text {
  display: block;
  font-weight: bold;
  font-size: 30vw;
  line-height: 1;
}

.label-box .bottom-text {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-top: 2vw;
  margin-bottom:3rem;
}

.centered-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.centered-list li {
    margin: 5px 0;
    font-size: 1.5rem;
}

@media (max-width: 768px), (max-height: 500px) {
  .label-box {
    padding: 5vw 7vw;
  }

  .label-box .top-text {
    font-size: 24vw;
  }

  .label-box .bottom-text {
    font-size: 2rem;
  }
}
