body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.list{
    display: flex;
    flex-direction: column;
    color: black;
    width: max-content;
    max-height: 70vh;
    overflow: auto;
}

.listItem{
    margin: 0.5rem;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 6px 16px 0 rgb(0 0 0 / 20%);
}

a{
    text-decoration: none;
    color: inherit;
}

.listItem:hover{
    background-color: tomato;
    color: white;
}
