@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  font-family: Roboto;
}

body {
  margin: 0;
  padding: 0;
  background-color: #241d20;
  color: #ccdedc;
  height: 100dvh;
  width: 100dvw;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#workBtn {
  margin: auto;
  margin-top: 2rem;
  width: 350px;
  height: 50px;
  text-align: center;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background-color: #ccdedc;
  color: #fe1543;
  font-size: 24px;
}

#workBtn:hover {
  background-color: #ccdedce4;
}

#workBtn:active {
  background-color: #bbcdcbd5;
}

.multiplier-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.mult-upgrade {
  width: 250px;
  height: 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background-color: #ccdedc;
  color: #fe1543;
}

.mult-upgrade:hover {
  background-color: #ccdedce4;
}

.mult-upgrade:active {
  background-color: #bbcdcbd5;
}

.mult-upgrade:disabled {
  background-color: #bbcdcb5a;
  color: #ccdedc94;
  cursor: not-allowed;
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 5rem;
  background-color: #ccdedc;
  color: #fe1543;
  width: 100vw;
}

.start {
  display: flex;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  background-color: #000000;
  height: 100dvh;
  width: 100dvw;
  color: white;
}

.container,
.end-container {
  margin: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.end {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  background-color: #000000;
  height: 100dvh;
  width: 100dvw;
  color: white;
  text-align: center;
}

#startGame,
.restart {
  margin: auto;
  width: 350px;
  height: 50px;
  text-align: center;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background-color: #ccdedc;
  color: #241d20;
  font-size: 24px;
}

#startGame:hover,
.restart:hover {
  background-color: #ccdedce4;
}

#startGame:active,
.restart:active {
  background-color: #bbcdcbd5;
}
