@media screen and (max-width: 360px) and (max-height: 780px),
  (max-width: 599px),
  (min-width: 360px) and (max-width: 780px),
  (min-width: 600px) and (max-width: 799px),
  (min-width: 800px) and (max-width: 1024px),
  (min-width: 800px) and (max-width: 1024px),
  (min-width: 1025px) and (max-width: 1399px),
  (min-width: 1400px) {
  * {
    padding: 5px;
    flex-wrap: wrap;
    box-sizing: content-box;
    font-family: "Poppins", sans-serif;
  }
  body {
    background-color: #dceef9;
  }
  .container {
    width: 90%;
    background-color: #c2e4e2;
    padding: 15px;
    position: inherit;
    display: flex;
    flex-wrap: wrap;
    margin: auto;

    border-radius: 0.8em;
  }
  h3 {
    text-align: center;
    width: 60%;
    margin: auto;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.8em;
    color: #010c39;
  }
  .draggable-objects,
  .drop-points {
    display: flex;
    justify-content: center;
    padding: 5px;

    flex-direction: row;
    flex-wrap: wrap;
  }
  .draggable-image {
    width: 140px;
    cursor: move;
  }
  img {
    width: 100px;
    filter: drop-shadow(0 0.3em 0.9em rgba(0, 0, 0, 0.25));
    border-radius: 25%;
  }
  .words {
    width: 110px;
    height: 110px;
    display: grid;
    margin: auto;
    font-size: 14px;
    text-align: center;
    place-items: center;
    border: 2.5px dashed #010c39;
    background-color: #dceef9;
    border-radius: 15px;
  }
  .dropped {
    padding: 0;
    background-color: #e5ffc8;
    transition: 0.5s;
  }
  .controls-container {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-color: rgb(197, 239, 249);
    flex-direction: column;
    top: 0;
  }
  .controls-container button {
    font-size: 25px;
    padding: 40px;
    border-radius: 0.2em;
    border: none;
    outline: none;
    color: #010c39;
    letter-spacing: 0.06em;
    cursor: pointer;
  }
  .controls-container p {
    color: #d0f1ff;
    font-size: 2em;
    margin-bottom: 1em;
  }
  .hide {
    display: none;
  }
}
