body {
  background-color: #15141a;
  color: #fbfbfe;
  font-family: "Exo 2", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
}

button {
  cursor: pointer;
}

button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.navbar {
  align-items: center;
  color: #ed3966;
  display: flex;
  height: 72px;
  justify-content: space-between;
  padding: 8px 32px;
}

.divider {
  background-color: #23222b;
  border-bottom: 1px solid #52525e;
  border-top: 1px solid #52525e;
  height: 32px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 64px;
  justify-content: space-around;
  padding: 16px;
}

.chess-board-container {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.chess-board-external-border {
  border: 1px solid #52525e;
}

.chess-board-internal-border {
  border: 22px solid #23222b;
}

.chess-board {
  height: auto;
  margin-bottom: -4px;
  pointer-events: none;
  touch-action: none;
  width: 100%;
}

#turn {
  display: inline-block;
}

.action-container {
  display: flex;
  flex-direction: column;
}

.article-container {
  font-size: 1.2rem;
}

.title {
  color: #ed3966;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 25px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #ed3966;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #ed3966;
  cursor: pointer;
}

.button-container {
  text-align: center;
  margin-top: 32px;
}

.button {
  background-color: #ed3966;
  border: 0;
  color: white;
  padding: 8px;
  width: 128px;
}

.guess-container {
  display: flex;
  justify-content: space-evenly;
}

#answer-anchor {
  color: #fbfbfe;
  text-decoration: none;
}

#answer {
  color: #ed3966;
  display: inline-block;
}

#slider-guess {
  display: inline-block;
}
