@import url("https://fonts.googleapis.com/css2?family=Bitcount+Grid+Single:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=BBH+Sans+Bartle&display=swap");
* {
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  font-family: "Bitcount Grid Single", system-ui;
}

body {
  margin: 0;
  background: #0b0c10;
  font-optical-sizing: auto;
  font-weight: 400;
}

.logo {
  color: #fff;
  font-size: 70px;
  font-family: "BBH Sans Bartle", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.header {
  padding: 30px 0;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.container {
  max-width: 1800px;
  padding: 0 40px;
}

.logo {
  color: #fff;
  font-size: 70px;
  font-family: "BBH Sans Bartle", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.green {
  color: green;
}

.bbh {
  font-family: "BBH Sans Bartle", sans-serif;
  font-weight: 400;
  font-style: normal;
}

button {
  border: 1px dashed green;
  padding: 10px 20px;
  background: transparent;
  color: green;
  font-size: 24px;
  border-radius: 20px;
  cursor: pointer;
}

button:hover {
  background: green;
  color: #0b0c10;
}

.title {
  font-size: 54px;
  text-align: center;
  color: white;
}

#spin_the_wheel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#wheel {
  width: 800px;
}

#spin {
  font-size: 3.5em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 135vh;
  left: 55.8%;
  margin: -15%;
  background: #fff;
  color: #000;
  -webkit-box-shadow: 0 0 0 8px currentColor, 0 0px 15px 5px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 0 8px currentColor, 0 0px 15px 5px rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  width: 230px;
  height: 230px;
}

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

input {
  padding: 10px;
  border-radius: 8px;
  border: none;
  width: 260px;
  font-size: 16px;
  text-align: center;
  color: grey;
  margin: 10px;
}

label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#result {
  color: white;
}