* {
  box-sizing: border-box;
  font-size: 12px;
}
body {
  margin: 0px;
  font-family: 'Oswald', sans-serif;
  color: brown;
  background-image: url('coffee.jpg');
  background-size: cover;
  background-position: center;
}

.column-container {
  display: flex;
  width: 100%;
  height: 100vh;
  min-width: 650px;
}
.column {
  margin: 10px;
  margin-top: 0px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  width: 100%;
  height: calc(100vh - 40px);
}
.container.left {
  margin-top: 25px;
  margin-left: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, .5);
  border-radius: 10px;
}

.title {
  font-size: 45px;
  width: 100%;
  padding: 0.5rem;
  text-align: center;
  font-family: 'Kaushan Script', cursive;
  background-color: rgba(255, 255, 255, .5);
  border-width: 5px;
  border-radius: 5px;
}

.column-header {
  font-size: 25px;
  position: relative;
  background-color: white;
  top: 8px;
  padding: 0.5rem;
  margin: 0 0 -1rem 0;
  font-family: 'Kaushan Script', cursive;
  border: 2px double steelblue;
  border-width: 5px;
  border-radius: 5px;
  background-color: blanchedalmond;
}
#big_coffee {
  user-select: none;
  font-size: 128px;
  cursor: pointer;
}

.counter-container {
  font-size: 30px;
  font-family: 'Kaushan Script', cursive;
  margin: 10px;
}

.counter-container #coffee_counter {
  font-size: 30px;
}

.cps-container {
  font-size: 20px;
  font-family: 'Kaushan Script', cursive;
}

.cps-container #cps {
  font-size: 20px;
}

#upgrades {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-evenly;
}

.upgrade {
  height: 80px;
  width: 100px;
  background-color: rgba(255, 255, 255, .5);
  margin: 1rem;
  padding: .5rem;
}

.purchased {
  height: 80px;
  width: 100px;
  border: 1px solid brown;
  border-spacing: 3px;
  margin: 1rem;
  padding: .5rem;
}

.upgrade:hover {
  background-color: rgba(255, 255, 255, .9);
}

#producer_container {
  padding: 10px;
  overflow: auto;
  border-width: 5px;
  border-radius: 5px;
  background-color: steelblue;
}

.producer {
  margin-bottom: 8px;
  padding: 10px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  background-color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1rem;
}

.producer-column {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.producer-title {
  font-size: 20px;
  font-family: 'Kaushan Script', cursive;
  margin-bottom: 1rem;
  text-transform: none;
}

.producer button {
  font-size: 1rem;
  font-family: 'Kaushan Script', cursive;
  padding: 0.5rem;
  width: 5rem;
  border: 3px solid brown;
  background-color: blanchedalmond;
  color: brown;
  text-transform: uppercase;
}

.producer button:hover {
  cursor: pointer;
  background-color: white;
}
