html {
     font-family: Arial;
     margin-top: 50px;
}

#albums {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.album {
    padding: 20px;
    margin: 5px;
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-size: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    color: #fff;
    text-shadow: 0px 0px 10px #000;
}

.album a {
    color: #fff;
    text-decoration: none;
}
