*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.list-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 250px);
  gap: 2rem;
  justify-content: center;
}


li {
    padding: 2rem;
    border: 1px solid green;
    background-color: #81ff81;  
    display: flex;  
    justify-content: center;
    border-radius: 5px;
    transition: all 0.3s ease;
}

li:hover{
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2)  ;
    border: 1px solid yellow;
    background-color: #fdff81;
}

a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}