@font-face {
  font-family: thryn;
  src: url(../../fonts/thryn.ttf);
}
html {
  scroll-behavior: smooth;
  height: 100vh;
}

body {
  background-color: #fffffa !important;
  overflow: hidden;
  height: 100%;
  background-image: url("../../images/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  overflow-y: auto;
}
body a {
  text-decoration: none;
}
body button:focus {
  outline: none;
}
body input:focus {
  outline: none;
}
body select:focus {
  outline: none;
}
body textarea:focus {
  outline: none;
}
body input::-webkit-outer-spin-button,
body input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body input[type=number] {
  -moz-appearance: textfield;
}
body.open {
  overflow: hidden;
}

.header-wrapper {
  position: relative;
  padding: 10px 30px;
  z-index: 5;
}
.header-wrapper .logo {
  width: 160px;
  filter: drop-shadow(0px 3px 1px #2d7e73);
}
.header-wrapper .logo img {
  width: 100%;
}
.header-wrapper .home-button-wrapper {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.header-wrapper .home-button-wrapper button {
  border-radius: 12px;
  width: 50px;
  height: 50px;
  text-align: center;
  border: none;
  color: #b52404;
  font-size: 25px;
  box-shadow: 0px 3px 3px #0f4e46;
  display: flex;
  justify-content: center;
  align-items: center;
}

#guide {
  background-color: rgba(0, 0, 0, 0.6509803922);
  width: 100%;
  height: 100%;
  z-index: 10;
  position: fixed;
  top: 0;
}

.guide-box {
  color: rgb(0, 0, 0);
  margin: auto;
  text-transform: uppercase;
  background-color: rgb(255, 218, 149);
  border-radius: 10px;
  width: 180px;
  height: 40px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  animation: start 1.2s ease-in-out 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.guide-box:before {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 20px solid rgb(255, 218, 149);
  top: -15px;
}

.fade-out {
  transition: opacity 1.2s;
  opacity: 0;
  z-index: -1 !important;
}

#title {
  text-align: center;
  margin-bottom: 10px;
}
#title img {
  height: 270px;
}

.deco {
  z-index: -1;
  position: absolute;
  transform: translateY(80px);
}
.deco img {
  width: 100%;
  display: block;
  margin: auto;
}

.wheel-border {
  position: absolute;
  width: 500px;
  filter: drop-shadow(0px 0px 5px #423838);
}
.wheel-border img {
  width: 100%;
}

.arrow {
  z-index: 5;
  fill: red;
  position: absolute;
  top: -20px;
  width: 55px;
}
.arrow img {
  width: 100%;
}

.svg-wrapper {
  background-color: transparent;
  background-size: cover;
  background-color: transparent;
}

#wheelPage {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: white;
}

#wheelNameDisplay {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  display: none;
}

#landingEntry {
  font-size: 50px;
  font-weight: bold;
}

#wheelContainer {
  width: 100%;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
}

.spin-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
}
.spin-btn .spin-btn-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: ease-in 12s;
}
.spin-btn .spin-btn-icon :hover {
  filter: brightness(1.2);
}
.spin-btn .spin-btn-icon img {
  height: 90px;
  animation: imgHeight 2s, breathing 2s ease-in-out 3s infinite;
}
.spin-btn button {
  border: none;
  border-radius: 100%;
  color: white;
  background: none;
  font-size: 16px;
  font-weight: bold;
  width: 100px;
  height: 100px;
  padding: 7px 0;
}
.spin-btn .spin-btn-info {
  height: 100%;
  width: 100%;
}
.spin-btn .spin-btn-info p {
  transform: translateY(55px);
  margin: 0;
}

@keyframes start {
  from {
    opacity: 0%;
  }
  to {
    opacity: 100%;
  }
}
@keyframes imgHeight {
  from {
    height: 200px;
  }
  to {
    height: 90px;
  }
}
@keyframes run {
  0% {
    top: 300%;
    left: -900%;
  }
  50% {
    left: -300%;
    top: 200%;
  }
  75% {
    top: 0;
  }
  100% {
    left: 50%;
  }
}
@keyframes breathing {
  0% {
    transform: scale(1);
    transform-origin: center center;
  }
  50% {
    transform: scale(0.9);
    transform-origin: center center;
  }
  100% {
    transform: scale(1);
    transform-origin: center center;
  }
}
@keyframes text {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    transform: translateY(55px);
    opacity: 1;
  }
}
.entryText {
  color: #ccc;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 1px;
  font-family: thryn;
}
.entryText.smaller {
  font-size: 18px;
  text-transform: uppercase;
}

circle {
  background-color: red;
}

@media only screen and (max-width: 576px) {
  body {
    background-position: left center;
  }
  .header-wrapper {
    padding: 10px 15px;
  }
  .header-wrapper .logo img {
    width: auto;
    height: 50px;
  }
  .header-wrapper .home-button-wrapper button {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .deco {
    margin-top: 0em;
    width: 100%;
  }
  #title {
    margin-bottom: 30px;
  }
  #title img {
    height: 180px;
  }
  .wheel-border {
    width: 100%;
  }
  #spin {
    margin-top: 0;
  }
  .spin-btn button {
    width: 80px;
    height: 80px;
  }
  .spin-btn .spin-btn-info p {
    transform: translateY(40px);
  }
  @keyframes text {
    0% {
      transform: translateY(0);
      opacity: 0;
    }
    50% {
      opacity: 0;
    }
    65% {
      opacity: 0;
    }
    100% {
      transform: translateY(40px);
      opacity: 1;
    }
  }
  @keyframes run {
    0% {
      top: 300%;
      left: -400%;
    }
    50% {
      left: -10%;
      top: 200%;
    }
    75% {
      top: 0;
    }
    100% {
      left: 50%;
    }
  }
  #wheelNameDisplay {
    font-size: 40px;
  }
  svg {
    height: 100% !important;
  }
}
@media only screen and (max-width: 320px) {
  .header-wrapper .logo img {
    width: auto;
    height: 50px;
  }
  .header-wrapper .home-button-wrapper button {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  #title {
    margin-bottom: 15px;
  }
  #title img {
    height: 100px;
    width: auto;
  }
}/*# sourceMappingURL=index.css.map */