@import url("https://fonts.googleapis.com/css2?family=Fredericka+the+Great&display=swap");

*,
*:before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  background: url("img/chalkboard.jpg");
  background-size: cover;
}

.kanban {
  display: grid;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
}

.blur {
  filter: blur(20px);
}

.itemEdit {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 2rem;
}

.btn {
  border: none;
  background-color: transparent;
  box-shadow: 3px 5px 1px hsla(0, 0%, 2%, 0.558);
  font-size: 1rem;
  padding: 0.5em 3em;
  transition: all 300ms ease-in-out;
  border: 2px solid white;
  font-family: "Fredericka the Great", cursive;
  color: white;
}

.create-new {
  font-size: 1.55rem;
}

.btn:hover {
  transform: scale(1.1);
  box-shadow: 4px 7px 3px hsla(0, 0%, 2%, 0.558);
  transition: all 300ms ease-in-out;
}

.btn:active {
  transform: scale(1);
  box-shadow: 2px 3px 1px hsla(0, 0%, 2%, 0.558);
}

.delete {
  font-size: 2rem;
  transition: all 300ms ease-in-out;
  color: white;
}

.delete:hover {
  font-size: 2.5rem;
  transform: rotate(10deg);
}

.board {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 2.3rem;
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  min-height: 700px;
  border-radius: 30px;
}

.title {
  margin: 0.5rem 0;
  font-family: "Fredericka the Great", cursive;
  letter-spacing: 0.2rem;
  text-decoration: underline;

  color: white;
}

.section__board {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 600px;
  padding: 1rem 2rem 1rem 0;
  overflow-x: auto;
}

.section__board:not(#done) {
  border-right: 2px solid white;
}
.item {
  width: 90%;
  padding: 1rem;
  margin-bottom: 0.6rem;
  background-color: hsla(0, 0%, 55%, 0.501);
  box-shadow: 3px 5px 2px hsla(0, 0%, 2%, 0.558);
  cursor: grab;
  transition: all 500ms ease-in-out;
}

.item p {
  color: white;
}

.item__creator {
  text-align: right;
  margin-top: 10px;
}

.module {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: hsla(0, 0%, 2%, 0.558);
}

.module__window {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 50%;
  min-width: 320px;
  padding: 2rem;
  /* background-color: hsl(0, 0%, 89%); */
  background: url("img/chalkboard.jpg");
  background-size: cover;
}

.module__hide {
  position: absolute;
  top: 25px;
  right: 25px;
  cursor: pointer;
}

.module__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 80%;
  max-width: 400px;
}

.input__wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  width: 100%;
}

.splitline-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.create-wrap {
  width: 45%;
}

.appendTo-wrap {
  width: 25%;
}

label {
  font-size: 1.5rem;
  font-family: "Fredericka the Great", cursive;
  letter-spacing: 0.2rem;
  color: white;
}

input,
textarea,
select {
  font-size: 1rem;
  padding: 0.5rem;
}

.hidden {
  display: none;
}

.is-dragging {
  transform: scale(0);
}
