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

body {
  height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(to bottom, #aaaaaa, #eeeeee);
  font-family: 'Lato', sans-serif;
}

#spin_the_wheel {
  position: relative;
}

#wheel {
  display: block;
  width: 600px;
  height: 600px;
}

#spin {
  font-size: 1.2em;
  font-weight: bold;
  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: #fff;
  color: #000;
  box-shadow: 0 0 0 8px currentColor, 0 0px 15px 5px rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  transition: 0.8s;
}

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

#gear {
  position: fixed;
  top: 15px;
  left: 15px;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 100;
}

#settingsModal {
  z-index: 999;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  display: none;
  border-radius: 10px;
  max-width: 90vw;
}

textarea {
  width: 100%;
  height: 100px;
  font-size: 14px;
}
