@import url("https://fonts.googleapis.com/css2?family=Saira+Extra+Condensed:wght@800&family=Staatliches&display=swap");

* {
  position: relative;
}
.demo {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 80px;
}

.faceWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 800px;
}

.face {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 800px;
  transform-style: preserve-3d;
}

.face h2 {
  font-family: sans-serif;
  width: fit-content;
  font-size: 100px;
  background: #efefef;
  line-height: 100px;
}

.dot {
  width: 20px;
  height: 20px;
  background: red;
  border-radius: 50%;
  position: absolute;
}

#scrubber {
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  position: fixed;
  height: 50px;
  background: #e0e6ff;
  border-radius: 8px;
}

#scrubber div {
  align-self: center;
  font-size: 22px;
}

#rotationSlider {
  width: 50%;
  margin-left: 16px;
  margin-right: 16px;
}

.nav {
  margin-top: 50px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.nav button {
  flex-shrink: 1;
  margin-top: 10px;
  padding: 1em;
  font-size: 1.2em;
}
