@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

.container {
  background-color: aquamarine;
  width: max-content;
  margin-top: 1rem;
  padding: 20px;
}

.draggable {
  background-color: #ecf0f1;
  padding: 1rem;
  border: 1px solid gray;
  cursor: pointer;
}
body {
  background-color: #ecf0f1;
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  text-align: center;
}

.title{
  margin-bottom: 3px;
}

.dragging {
  border: 2px solid red;
}

.dropzone {
  background-color: aqua;
}