* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    /*background-color: #5372ef;*/
    background-color: rgb(24, 151, 236, 1);
  }
  
  .container {
    width: 90%;
    max-width: 37.5em;
    background-color: #ffffff;
    padding: 3em 0.5em;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 0.8em;
  }
  
  h3 {
    text-align: center;
    width: 60%;
    margin: 0 auto 2em auto;
    font-size: 1.2em;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.8em;
    color: #010c39;
  }
  
  .draggable-objects,
  .drop-points {
    display: flex;
    justify-content: space-around;
    padding: 2em;
  }
  
  .draggable-image {
    width: 8em;
    cursor: move;
  }
  
  img {
    width: 8em;
    filter: drop-shadow(0 0.3em 0.9em rgba(0, 0, 0, 0.25));
  }
  
  .countries {
    width: 10em;
    height: 8em;
    display: grid;
    place-items: center;
    border: 0.25em dashed #010c39;
    border-radius: 0.8em;
  }
  
  .dropped {
    padding: 0;
    background-color: #e5ffc8;
  }
  
  .controls-container {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    /*background-color: #5372ef;*/
    background-color: rgb(24, 151, 236, 1);
    flex-direction: column;
    top: 0;
  }
  
  .controls-container button {
    font-size: 1.12em;
    padding: 0.8em 1em;
    border-radius: 0.2em;
    border: none;
    outline: none;
    color: #010c39;
    letter-spacing: 0.06em;
    cursor: pointer;
  }
  
  .controls-container p {
    color: #ffffff;
    font-size: 2em;
    margin-bottom: 1em;
  }
  
  .hide {
    display: none;
  }
  

  @media(max-width: 768px) {
   
    .container {
      width: 90%;
      max-width: 37.5em;
      background-color: #fff;
      padding: 0.5em 0.5em;
      position: absolute;
      transform: translate(-50%, -50%);
      top: 50%;
      left: 50%;
      border-radius: 0.8em;
    }
    
    h3 {
      text-align: center;
      width: 60%;
      margin: 0.2em auto 0 auto;
      font-size: 1em;
      font-weight: 300;
      letter-spacing: 0.03em;
      line-height: 1.2em;
      color: #010c39;
    }
   
   
   
    .espacio{
      flex-direction: column;
      align-items: center;
      height: 40px;
    }
    
    .drop-points{
      flex-direction: column;
      align-items: center;
      gap: 5px;
    }
    
    .countries {
      width: 10em;
      height: 8em;
      display: grid;
      place-items: center;
      border: 0.15em dashed #010c39;
      border-radius: 0.8em;
    }



    }