.container {
    max-width: 960px;
    margin: auto;
    display: flex;
   
    justify-content:center ;
    align-items: center;
    flex-wrap: wrap;
    /* background: rgba(0,0,0,.3) */
    
  }
  
  body {
    background: #333;
    /* background-color: #eceff1; */
    font-family: sans-serif;
    color: #37474f;
    font-family: 'Genos', sans-serif;
    
  }
  
  h1, h3, p {
    text-align: center;
    font-family: 'Genos', sans-serif;
    color: white;
  
  }
  
  main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  
    grid-gap: 10px;
  
  }
  
  .draggable-list {
    padding: 5px;
    display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: center;
     text-align: center;
    
  }
  
  li {
    
    list-style: none;
    padding: 10px;
    margin: 10px;
    background-color: #222 ;
    border: 1px solid white;
    color:white;
    cursor: grab;
    border-radius: 20px;
    width: 120px;
    height: 60px;
    text-align: center;
    font-size: 20px;
    
  }
  
  .palabra{
    width: 140px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    
  }
  
  /* .over {
    background-color: rgb(11, 128, 0);
  }
   */
  
  table {
    max-width:640px;
    margin: auto;
    margin-bottom: 20px;
    /* border: 1px solid #b0bec5; */
  }
  
  th, td {
    padding: 10px 10px;
  }
  
  td {
    border: 1px solid #90a4ae;
  }
  
  tr:nth-child(even) {
    background-color: #cfd8dc;
  }
  
  button {
    margin: auto;
    cursor: pointer;
    display: block;
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
    border: solid 2px white;
    background-color: #222;
    color: #fff;
  }
  
  button:hover {
    /* background-color: rgb(0, 128, 32); */
  }
  
  #endMessage {
    display: none;
  }
  
  img{
    height: 60px;
    width: 60px;
  }
  
  @media (max-width: 600px) {
    .container{
      display: grid;
    grid-template-columns: repeat(2, 1fr);
  
    grid-gap: 10px;
  
      
      size: 25%;
      width: 25%;
    }
  
    }
  