/* .header{
    margin: 30%;
}

.header h2,p{
    text-transform: uppercase;
    font-weight: bold;
} */

/* .album-sec .container{
    margin: 100000px;
} */

/* .album-sec{
    margin-top: 10000px;
} */

.single-album{
    position: relative;
    overflow:hidden;
    box-shadow: 5px 5px 15px #000;
    margin-top: 10px;
}

.album-img{
    position: relative;
    overflow: hidden;
}

.album-img img{
    width: 100%;
    height: 100%;
    transition: .4s;
}

.single-album:hover .album-img img{
    transform: scale(1.5,1.5);
}

.album-content{
    height: 1px;
    width: 100%;
    overflow: hidden;
    text-align: center;
    position: absolute;
    bottom: 0;
    transition: all .4s;
    background: #034D93;
}

.single-album:hover .album-content{
    height: 100%;
    background: #034D93;
}

.album-info{
    transition: all .5s;
    padding: 5px 20px 5px 20px;
}

.album-info h3{
    font-size: 16px;
    color: #fff;
    margin: 5px;
    text-transform: uppercase;
}

.single-album:hover .album-info h3{
    color: tomato;
}

.album-info p{
    color: #fff;
    margin-top: 10px;
}

.album-text{
    color: #fff;
    padding: 0 10px 5px;
}
