* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "figtree", sans-serif;
}

main {
  background: #ffd7ef;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

#fireworks-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#wheelOfFortune {
  display: inline-flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 50%;
  padding: 20px;
  box-sizing: border-box;
  background: #c3262d;
}

#wheelOfFortune:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

#wheel {
  display: block;
}

.antialiased {
  background: url("/images/womenday.jpg") no-repeat center top -8px;
  background-size: cover;
  background-color: rgb(255 215 239);
  width: 1400px;
  height: 600px;
}

#spin {
  font: 1.2rem/0 sans-serif;
  user-select: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  height: 30%;
  margin: -15%;
  background: #c3262d;
  color: #fff;
  box-shadow: 0 0 0 8px #c3262d, 0 0px 15px 5px rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  transition: 0.8s;
  z-index: 2;
}

#spin::after {
  content: "";
  position: absolute;
  top: -17px;
  border: 10px solid transparent;
  border-bottom-color: #c3262d;
  border-top: none;
}

#confetti {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.4);
    opacity: 0;
}

.swal2-container .swal2-modal {
  background: url("/images/noti_bg.png") no-repeat center;
  color: #fff;
  box-shadow: none !important;
  padding: 0;
  width: 512px;
  height: 328px;
  padding-bottom: 20px;
}

.swal2-title {
  font-size: 21px;
  color: #fff;
  font-weight: 500 !important;
}

.swal2-success-circular-line-left {
  display: none;
}

.swal2-success-circular-line-right {
  display: none;
}

.swal2-success-fix {
  display: none;
}
div:where(.swal2-container) div:where(.swal2-html-container) {
  font-size: 2rem !important;
  font-weight: 700 !important;
  padding: 0.1em 1.6em .3em !important;
}

div:where(.swal2-container) h2:where(.swal2-title) {
  padding: 1.2em 1em 0 !important;
}


.antialiased{
  position: relative;
}

#reset{
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 40px;
  background: #c3262d;
  color: #fff;
  cursor: pointer;
  border: 0px;
  border-radius: 5px;
}