* {
  box-sizing: border-box;
}

body {
  margin: 10px;
}

.navigation {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 10px 10px 20px 20px;
  border-bottom: 2px solid rgb(255, 255, 255);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#settings {
  color: #1B9CFC;
  cursor: pointer;
}

.nav-logo {
  font-family: "Berkshire Swash", cursive;
  font-size: 25pt;
  color: #1B9CFC;
  display: inline-block;
  line-height: 30px;
  font-weight: 800;
}

.notes-body {
  position: relative;
  min-height: calc(100vh - 80px);
  width: 100%;
  padding: 20px;
  overflow: auto;
  background-color: #1B9CFC;
  border-radius: 5px;
  -moz-column-count: 5;
       column-count: 5;
  -moz-column-gap: 15px;
       column-gap: 15px;
}

.notes-column {
  position: relative;
  outline: 2px solid rgb(255, 255, 255);
  border-radius: 3px;
  padding: 0 10px;
  max-height: 100%;
  overflow-x: hidden;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  display: grid;
  grid-template-rows: 1fr auto;
  margin-bottom: 15px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.notes-column div[contenteditable]:focus-visible {
  outline: none;
}
.notes-column .notes-add-entry {
  font-size: 13pt;
  font-family: "Raleway", sans-serif;
  background-color: white;
  font-weight: 700;
  width: calc(100% + 22px);
  position: relative;
  left: -11px;
  padding: 5px;
  text-align: center;
  color: rgb(116, 116, 116);
  cursor: pointer;
}
.notes-column > :nth-child(3) {
  border: none;
}
.notes-column.add-column {
  background-color: white;
}

.notes-column-head {
  color: white;
  font-size: 18pt;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  padding: 5px 15px;
  width: calc(100% + 22px);
  position: relative;
  left: -11px;
  color: rgb(116, 116, 116);
  background-color: white;
  margin-bottom: 5px;
}

.notes-entry {
  color: white;
  margin: 5px;
  padding: 15px 0px 5px;
  font-size: 13pt;
  font-family: "Raleway", sans-serif;
  border-top: 1px solid rgb(255, 255, 255);
  position: relative;
}
.notes-entry .notes-entry-head {
  font-weight: 700;
}
.notes-entry .notes-entry-text {
  padding: 5px 0;
}
.notes-entry .delete-entry {
  background-image: url(../imgs/close.png);
  position: absolute;
  right: 0px;
  top: 5px;
  height: 10px;
  width: 10px;
  background-size: cover;
  filter: invert(1);
  cursor: pointer;
}

.notes-add-column {
  font-family: "Raleway", sans-serif;
  color: rgb(116, 116, 116);
  font-weight: 700;
  font-size: 13pt;
  padding: 5px;
  cursor: pointer;
  text-align: center;
}

.notes-col-settings {
  height: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  width: calc(100% + 22px);
  position: relative;
  left: -11px;
}
.notes-col-settings .delete-col {
  background-image: url(../imgs/close.png);
  position: absolute;
  right: 7px;
  top: 5px;
  height: 10px;
  width: 10px;
  background-size: cover;
  filter: invert(1);
  cursor: pointer;
}

.settings-overlay {
  position: fixed;
  top: 0;
  width: 400px;
  height: 100%;
  background-color: #fff;
  z-index: 100;
  justify-content: center;
  align-items: center;
  padding: 70px 25px 25px;
  right: -400px;
  transition: all cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.5s;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.settings-overlay.open {
  right: 0;
}

.button-close {
  position: absolute;
  top: 22px;
  right: 28px;
  height: 25px;
  width: 25px;
  background-image: url(../imgs/close.png);
  background-size: cover;
  cursor: pointer;
}

.settings-headline {
  font-size: 18pt;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.settings-section {
  display: flex;
  align-items: center;
  margin: 10px 0;
  justify-content: space-between;
  width: 60%;
  min-width: 180px;
}

input[type=color] {
  border: 1px solid black;
  padding: 0;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  width: 50px;
  height: 30px;
  border-radius: 3px;
  margin-left: 15px;
}

.settings-text {
  font-size: 13pt;
  font-family: "Raleway", sans-serif;
  color: #000;
}

.settings-button {
  font-size: 13pt;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  float: right;
  background-color: transparent;
  border: 2px solid black;
  border-radius: 2px;
  padding: 2px 10px;
}

.animation {
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1400px) {
  .notes-body {
    -moz-column-count: 4;
         column-count: 4;
  }
}
@media (max-width: 1200px) {
  .notes-body {
    -moz-column-count: 3;
         column-count: 3;
  }
}
@media (max-width: 768px) {
  .notes-body {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 576px) {
  .notes-body {
    -moz-column-count: 1;
         column-count: 1;
  }
  .settings-overlay {
    width: 100%;
    right: -100%;
  }
}/*# sourceMappingURL=main.css.map */