.header {
    margin: 3%;
}

.header h2,
p {
    text-transform: uppercase;
    font-weight: bold;
}

.single-album {
    position: relative;
    overflow: hidden;
    box-shadow: 5px 5px 15px #000;
    border-radius: 100px 20px 20px 10px;
    margin-bottom: 30px;
}

.album-img {
    position: relative;
    overflow: hidden;
}

.album-img img {
    width: 100%;
    transition: .4s;
}

.single-album:hover .album-img img {
    transform: scale(1.2, 1.2);
}

.album-content {
    height: 40px;
    /*initilally 50*/
    width: 100%;
    overflow: hidden;
    text-align: center;
    position: absolute;
    bottom: 0;
    transition: all 0.4s;
    background-color: #ffffb3;
}

.single-album:hover .album-content {
    height: 150px;
}

.album-info {
    transition: all .5s;
    padding: 5px 20px 5px 20px;
}

.album-info h3 {
    font-size: 20px;
    color: black;
    margin: 5px;
    text-transform: uppercase;
}

.single-album:hover .album-info h3 {
    color: tomato;
}

.album-info p {
    margin-top: 15px;
}

.single-album:hover .album-info p {
    color: tomato;
}