@font-face {
  font-family: DKCoolCrayon;
  src: url(DKCoolCrayon.ttf);
}
.crayon { 
  font-family: DKCoolCrayon;
  font-size:2.5em;
  font-weight: bold;
  color: whitesmoke;
  margin-top: 10px;
}

#palmovil {
  width: 86%;
}

#pizarra {
  background-color: #003300;
  border: 20px solid goldenrod;
  border-radius: 10px;
  width: 96%;
  height: auto;
  padding: 0;
  margin-top: 25px;
}

.zeregin {
  text-align: center;
  font-size: 3em;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  margin-top: 0.4em;
  margin-bottom: 0.1em; 
  color: rgb(255, 255, 153);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  color: #111;
}

.draggable-elements {
  justify-content: center;
}
.draggable {
  height: 15rem;
  width: 20rem;
  margin: 1rem auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: 1rem auto;
  cursor: move;
  border: 10px solid #fff;
  border-radius: 5px;
  transition: opacity 0.2s;
}
.draggable:hover {
  opacity: 0.5;
}
.droppable {
  height: 15rem;
  width: 20rem;
  margin: 1rem auto;
  display: flex;
  overflow: hidden;
  text-overflow: ellipsis;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  font-weight: bold;
  background-color: #fff;
  border: 8px dashed red;
  transition: border-width 0.2s, transform 0.2s, background-color 0.4s;
}
.droppable span {
  font-size: 2.3rem;
  pointer-events: none; /* The element is never the target of pointer events */
}

/* Drag and Drop Related Styling */

.droppable.droppable-hover {
  /* background-color: #bee3f0; */
  border-width: 5px;
  transform: scale(1.1);
}
.droppable.dropped {
  border: 8px solid goldenrod;
  color: #fff;
}
.droppable.dropped span {
  font-size: 2rem;
}
.droppable.dropped i {
  pointer-events: none;
}
.draggable.dragged {
  user-select: none;
  opacity: 0.1;
  cursor: default;
}
.draggable.dragged:hover {
  opacity: 0.1;
}

.button {
  display: inline-block;
  padding: 0.15em 0.5em;
  margin-right: 5%;
  font-size: 2.5em;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: whitesmoke;
  background-color: dodgerblue;
  border: 2px solid whitesmoke;
  border-radius: 0.25em;
  box-shadow: 0 5px #666;
}

.button:hover {background-color: blue}

.button:active {
  background-color: red;
/*   box-shadow: 0 4px darkred; */
  box-shadow: 0 0;
  transform: translateY(4px);
}