.frame {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.top-buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: honeydew;
  box-shadow: grey 0 0 10px;
  padding: 1%;
  text-emphasis: bold;
}

.board-frame {
  display: flex;
  margin: 10px 10px 10px 10px;
  width: 100%;
  box-shadow: grey 0 0 10px;
}

.board {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 0px 0px 10px 0px;
  text-wrap: wrap;
}

.board-title {
  font-size: 1.8rem; /* Makes titles larger */
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 25px; /* Adds spacing above */
  text-align: center;
  background-color: beige;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 10px 0;
  text-wrap: wrap;
  width: 100%;
  height: 200px;
  background-color: #f0f0f0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.card-contents {
  margin-top: 2%;
}

.buttons-div {
  /*lay out all buttons in a row */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  padding: 2%;
}
