:root {
  font-family: 'SUIT Variable', sans-serif;
}

html,
body {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  display: grid;
  place-items: center;
}

#wheel {
  max-height: 100%;
  max-width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin: 5px;
  position: absolute;
}

.roulette {
  display: grid;
  place-items: center;
  height: 100vh;
}


.counter {
  position: absolute;
  left: 0;
  top: 0;
  margin: 15px;
  display: flex;
  flex-direction: column;
}

.counter>* {
  height: 30px;
  width: 30px;
}

#count {
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter>button {
  font-size: 26px;
  line-height: 0;
}

#arrows {
  max-height: 100%;
  max-width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin: 5px;
  position: absolute;
  pointer-events: none;
}

#popup {
  position: absolute;
  background: #00000017;
  z-index: 10;
  backdrop-filter: blur(5px);
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  justify-items: center;
}

.popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  padding: 30px;
  border-radius: 30px;
  font-size: 70px;
  max-width: 70%;
}

.popup-content>button {
  appearance: none;
  border-radius: 10px;
  font-size: 20px;
  background: #95fca1;
  border: none;
  padding: 5px 20px;
  cursor: pointer;
}

#name-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

#name-list>span {
  margin: 0 10px;
  white-space: pre;
}