:root {
  --gray-85: hsl(0, 0%, 85%);
  --red-23: hsl(352, 61%, 23%);
  --red-25: hsl(352, 61%, 25%);
  --red-27: hsl(352, 61%, 27%);
  --red-31: hsl(352, 61%, 31%);
}

@font-face {
  font-family: sga;
  src: url(/assets/fonts/enchantment-proper.otf);
}

body {
  margin: 0px;
  background-color: var(--red-31);
  font-family: Poppins;
}

.ui {
  z-index: 10;
}

.game {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0px;
  justify-content: space-between;
  flex-direction: column;
}

.save-button {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: fit-content;
  height: 30px;
  font-family: inherit;
  color: var(--gray-85);
  background-color: var(--red-23);
  border: none;
  border-radius: 15%;
  box-shadow: 2px 1px 2px black;
  z-index: inherit;
  transition: background-color ease 0.2s;
}

.save-button:hover {
  cursor: pointer;
  background-color: var(--red-25);
}

.reset-button {
  position: absolute;
  left: 80px;
  bottom: 20px;
  width: fit-content;
  height: 30px;
  font-family: inherit;
  color: var(--gray-85);
  background-color: var(--red-23);
  border: none;
  border-radius: 15%;
  box-shadow: 2px 1px 2px black;
  z-index: inherit;
  transition: background-color ease 0.2s;
}

.reset-button:hover {
  cursor: pointer;
  background-color: var(--red-25);
}

.score {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--red-25);
  width: 100%;
  height: 120px;
}

.affix {
  color: var(--gray-85);
  font-size: 96px;
}

.score-prefix {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: fit-content;
  height: 100%;
}

.score-affix {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 100%;
  font-family: inherit;
}

.score-suffix {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  height: 100%;
}

.main {
  display: flex;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.left {
  background-color: var(--red-27);
  width: 300px;
  z-index: 1;
}

.play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(70% - 2 * 300px);
  height: 100%;
}

.weirdchamp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 295px;
  height: 295px;
  -webkit-user-drag: none;
  border-radius: 50%;
  transition: width ease 0.1s, height ease 0.1s;
  user-select: none;
}

.over {
  width: 300px;
  height: 300px;
}

.click {
  width: 295px;
  height: 295px;
}

.right {
  display: flex;
  flex-direction: column;
  background-color: var(--red-27);
  width: 300px;
  z-index: 1;
}

.right-bar {
  display: flex;
  margin: 10px;
  width: auto;
  height: 40px;
  background-color: var(--red-31);
  border-radius: 5px;
}

.right-bar-text {
  margin: 0px 10px;
  color: var(--gray-85);
  font-size: 24px;
  font-family: inherit;
}

.right-options {
  display: flex;
  flex-direction: column;
  margin: 0px 10px 10px 10px;
  width: auto;
  height: fit-content;
}

.right-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  width: auto;
  height: 80px;
  background-color: var(--red-31);
  cursor: pointer;
  border-radius: 5px;
}

.img-name-price {
  display: flex;
  width: fit-content;
}

.icon {
  margin: 0px 10px;
  width: 60px;
  height: 60px;
  user-select: none;
}

.name-price {
  display: flex;
  position: relative;
  top: -3px;
  flex-direction: column;
  width: 60px;
  height: 60px;
  user-select: none;
}

.name {
  width: 60px;
  height: 60px;
  color: var(--gray-85);
  font-size: 24px;
  user-select: none;
}

.cost {
  width: 60px;
  height: 60px;
  color: var(--gray-85);
  font-size: 18px;
  user-select: none;
}

.quantity {
  display: flex;
  position: relative;
  align-items: center;
  margin-right: 10px;
  width: fit-content;
  overflow: none;
  height: 60px;
  color: var(--gray-85);
  opacity: 0.4;
  font-size: 60px;
  user-select: none;
}
