html, body {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 10px;
  font-family: "Outfit", sans-serif;
}

body {
  padding: 2rem 1rem;
}

.drag-container {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
}

.board {
  position: relative;
}

.board-column {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 1rem;
  width: calc(100% / 5);
  z-index: 1;
}

.board-column.muuri-item-releasing {
  z-index: 2;
}

.board-column.muuri-item-dragging {
  z-index: 3;
  cursor: move;
}

.board-column-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.board-column-header {
  position: relative;
  height: 5rem;
  line-height: 5rem;
  font-size: 1.7rem;
  overflow: hidden;
  padding: 0 20px;
  text-align: center;
  background: #333;
  color: #fff;
  border-radius: 5px 5px 0 0;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.done .board-column-header {
  background: #6D56B3;
}
.second-draft .board-column-header {
  background: #713474;
}
.first-draft .board-column-header {
  background: #5B1C3F;
}

.outline .board-column-header {
  background: #380E19;
}

.not-started .board-column-header {
  background: #140914;
}

.board-column-content-wrapper {
  position: relative;
  padding: 1rem;
  background: #f0f0f0;
  height: calc(100vh - 10vh);
  overflow-y: auto;
  border-radius: 0 0 5px 5px;
}

.board-column-content {
  position: relative;
  min-height: 100%;
}

.board-item {
  position: absolute;
  width: calc(100% - 2rem);
  margin: 8px;
}

.board-item.muuri-item-releasing {
  z-index: 9998;
}

.board-item.muuri-item-dragging {
  z-index: 9999;
  cursor: move;
}

.board-item.muuri-item-hidden {
  z-index: 0;
}

.board-item-content {
  position: relative;
  padding: 2rem;
  background: #fff;
  border-radius: 4px;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.2);
}

.board-item-content span {
  font-style: italic;
  font-size: 1.3rem;
  color: #888;
}

@media screen and (max-width: 900px) {
  .board-column {
    width: calc(100% / 3);
  }
  
  .board-column-content-wrapper {
    height: calc(100vh - 20vh);
    margin-bottom: 2rem;
  }
  
}

@media screen and (max-width: 700px) {
  .board-column {
    width: calc(100% / 2);
  }
  
}

@media screen and (max-width: 455px) {
  .board-column {
    width: calc(100% / 1);
  } 

}
