* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
    font-weight: normal;
}
  
.container {
    font-family: sans-serif;
    text-align: center;
    display: grid;
    height: 100vh;
    grid-template-rows: 1fr .5fr;
}
  
.text-background {
    margin-top: 1rem;
}
  
ul {
    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
}
  
li {
    width: 50px;
    height: 50px;
    margin: 0 2rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
  
li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}


@media (max-width: 571px) {
    li {margin: 1rem;}
}