* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  background-image: url('https://images.unsplash.com/photo-1541167760496-1628856ab772?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8Nnx8Y29mZmVlfGVufDB8fDB8fA%3D%3D&auto=format&fit=crop&w=800&q=60');
  background-position: sticky;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgb(29, 1, 56);
  color: indigo;
  text-shadow: 1px 1px 1px #251810;
  z-index: 100;
}

#pageContainer {
  display: flex;
  flex-direction: column;
}

.columnContainer {
  display: flex;
  width: 100%;
  height: 100%;
  min-width: 50%;
  z-index: 100;
}

.column {
  margin: 10px;
  margin-top: 0px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
}

.container {
  width: 100%;
  height: calc(100vh - 40px);
  z-index: 100;
}

.container.left {
  margin-top: 25px;
  margin-left: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.columnHeader {
  font-size: 25px;
  position: relative;
  background-color: transparent;
  z-index: 100;
}

#bigCoffee {
  user-select: none;
  filter: drop-shadow(0 1px 1px indigo);
  font-size: 128px;
  cursor: pointer;
  z-index: 100;
}

button {
  background-color: indigo;
  color: #d7ab65;
  text-shadow: 1px 1px 1px #251810;
}

.counterContainer {
  font-size: 30px;
  margin: 10px;
  z-index: 100;
}

.cpsContainer {
  font-size: 20px;
  z-index: 100;
}

#producerContainer {
  padding: 10px;
  overflow: auto;
  border: 2px black solid;
  border-radius: 5px;
  z-index: 100;
  background-color: transparent;
}

.producer {
  background-color: #d7ab65;
  margin-bottom: 5px;
  padding: 10px;
  border: 2px solid grey;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  z-index: 100;
}

.producerColumn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 100;
}

.producerTitle {
  font-size: 20px;
  z-index: 100;
}

.producer button {
  font-size: 15px;
  width: 50px;
  z-index: 100;
}

#footer {
  background-color: #d7ab65;
  bottom: 0;
  color: indigo;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  padding: 1rem;
  position: sticky;
  width: 100%;
  z-index: 1;
}

#footerIcons {
  display: flex;
  filter: drop-shadow(0 1px 1px #251810);
  font-size: 2rem;
  justify-content: space-evenly;
  text-decoration: none;
}

#footerText {
  display: flex;
  font-size: 1.5rem;
  justify-content: center;
  text-align: center;
}

#websiteCredit {
  color: whitesmoke;
  text-decoration: none;
  text-shadow: 1px 1px 1px indigo;
}
