body {
  padding: 0px;
  margin: 0px;
  font-family: "Open Sans";
}

p,
h1,
h2,
h3,
h4 {
  font-family: "Open Sans";
}

.main {
  background: #152f56;
  min-height: 100vh;
}

.debug {
  background-color: yellow;
  border-color: red;
  border-style: solid;
}

.pad {
  flex: 1;
}

.spinner {
  position: absolute;
  opacity: 50;
  width: 100%;
  height: 100%;
  background-color: rgba(161, 152, 152);
  border-radius: 50%;
  transition: 0.05s;
}

.spinner-text-container {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.background-image {
  max-height: 100vh;
  object-fit: contain;
}

.start-game-button:hover {
  cursor: pointer;
}

.option-box {
  padding: 20px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(161, 152, 152, 0.75);
  flex: 1 1 0;
  min-width: 0;
  border-radius: 15px;
  margin: inherit;
  background-color: rgba(161, 152, 152, 0.25);
  display: flex;
  flex-direction: column;
}

.narrow {
  margin: 0px;
}

.preview-image {
  width: 5%;
  aspect-ratio: 1;
  transition: scale;
}
.preview-image:hover {
  scale: 2.5;
  cursor: pointer;
}

.hud-circle {
  aspect-ratio: 1;
  position: relative;
  width: 60px;
  background-color: rgba(161, 152, 152, 0.75);
  border-radius: 50%;
  margin: 10px;
  opacity: 0.75;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  transition: opacity 0.2s;
}

.hud-circle:hover {
  cursor: pointer;
  opacity: 1;
}

.red {
  background-color: rgb(168, 8, 8);
}

.top-left-hud {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  color: white;
  text-shadow: 2px 2px 8px #000000;
  margin: 20px;
}

.box-disable {
  cursor: not-allowed;
}

.affirmative {
  background-color: green;
  opacity: 0.75;
}

.negative {
  background-color: rgb(168, 8, 8);
  opacity: 0.75;
}

.top-right-hud {
  position: fixed;
  top: 0;
  right: 0;
  margin: 20px;
}

.about-bar {
  display: flex;
}

.search-bar {
  flex: 1;
}

.opacity-slider {
  width: 100%;
  margin-left: 2em;
  margin-right: 2em;
}

.color-picker {
  aspect-ratio: 1;
}

.dev-button {
  margin: 0.25em;
}

.dev-button:hover {
  cursor:pointer;
}

.slideshow-speed-container {
  text-align: center;
}