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

body {
    overflow:hidden;
    background-color:#f0f0f0;
}
        
.list {
    float: center;
    overflow-y: scroll;
}
.listEntry {
    overflow-x: hidden;
    padding:10px;
    margin:20px auto;
    font-size: 60px;
    width: 50%;
    border-radius: 10px;
    text-align: left;
    transition: 0.3s linear;
    vertical-align: center;
    background-color:#e0e0e0;
}
.listEntry:hover {
    background-color:#b0b0a0;
}
