body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #E65EA0;
  font-size: 18px;
  color:#FFF;
}

.page-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Define duas colunas de tamanho igual */
  grid-template-rows: auto 1fr 1fr; /* Define a altura das linhas */
  grid-template-areas:
    "banner banner"
    "wheel form"
    "tips prizes"
    "bottom-banner bottom-banner";
  gap: 10px;
  height: 100vh;
  width: min(100%, 1200px);
  margin: 0 auto;
}

@media (max-width: 600px) {
  .page-container {
    grid-template-areas:
      "banner"
      "wheel"
      "form"
      "prizes"
      "tips"
      "bottom-banner";
    grid-template-columns: 1fr; /* One column for all items */
    grid-template-rows: auto auto auto auto auto; /* Five rows */
  }
}

.banner-section {
  grid-area: banner;
}

.wheel-section {
  grid-area: wheel;

}

.form-section {
  grid-area: form;

}
.tips-section {
  grid-area: tips;

}
.prizes-section {
  grid-area: prizes;

}

.bottm-banner-section {
  grid-area: bottom-banner;
}

#app {
  width: 400px;
  height: 400px;
  margin: 0 auto;
  position: relative;
}

.marker {
  position: absolute;
  width: 60px;
  left: 172px;
  top: -20px;
  z-index: 2;
}

.wheel {
  width: 100%;
  height: 100%;
}

.button {
  display: block;
  width: 250px;
  margin: 40px auto;
  cursor: pointer;
}

.button:hover {
  opacity: 0.8;
}

.blur {
  animation: blur 10s;
}

@keyframes blur {
  0% {
    filter: blur(1.5px);
  }

  80% {
    filter: blur(1.5px);
  }

  100% {
    filter: blur(0px);
  }
}

.blinking {
  animation: blinkingText 1.2s infinite;
}

@keyframes blinkingText {
  0% {
    color: #FFF;
  }

  49% {
    color: #FFF;
  }

  60% {
    color: transparent;
  }

  99% {
    color: transparent;
  }

  100% {
    color: #FFF;
  }
}

.wheelText {
  font: 26px serif;
  font-family: "Arial Black", Gadget, sans-serif;
  font-weight: normal;
  text-align: center;
  /*text-shadow: 0 0 3px #555555, 0 0 5px #555555;*/
  text-shadow: 2px 2px #555555;
  -webkit-appearance: none;
  -webkit-box-shadow: 3px 3px 6px 6px #555555;
  fill: white;
}

.btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:visited {
  background-color: #EC008C;
  border-color: #EC008C;
}
