* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body{
  min-height: 100vh;
  background-color: rgb(231, 231, 231);
  display: flex;
  align-items: center;
  justify-content: center;
  padding:1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 1rem;
}

.board {
 display: flex;
 align-items: center;
 justify-content: space-around;
}

.list {
  height: 300px;
  overflow-y: auto;
  background-color: rgb(212, 211, 211);
  width: 30%;
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
  color: rgb(39, 39, 39);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s;
  scrollbar-width: thin;
  scrollbar-color: rgb(82, 81, 81) rgb(196, 194, 194);
}
.list.over {
 background-color: rgb(197, 196, 196);
}

.card {
 width: 100%;
 background-color: rgb(223, 221, 221);
 padding: 10px 15px;
 border-radius: 5px;
 box-shadow: 2px 2px 10px rgba(24, 24, 24,0.2);
 cursor: grab;
 font-weight: 500;
 color: rgb(42, 42, 43);
 font-size: 0.9rem;
}

.card:active {
  cursor: grabbing;
  box-shadow: 4px 2px 10px rgba(24, 24, 24,0.2);
}

.list h2 {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

