.album-container {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.album {
width: 300px;
height: 300px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
transition: opacity .5s;
margin: 10px 10px;
}
.album-info {
width: 100%;
height: 100%;
transition: opacity .5s;
opacity: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.album-info h2,
.album-info p {
color: #fff !important;
}
.album:hover .album-info {
background-color: #00000090;
transition: opacity .5s;
opacity: 1;
}
.gig-list-container {
display: flex;
flex-direction: column;
width: 100%;
margin-top: 50px;
}
.gig {
display: flex;
align-items: center;
justify-content: space-between;
height: 150px;
padding: 20px 0;
border-top: 1px solid #cfcfcf;
}
.gig-divider {
background: #cfcfcf;
width: 1px;
height: 50px;
}
.time {
font-size: 20px;
color: #353535;
font-weight: 500;
}
.gig-button {
background: #9b6158;
color: #fff;
font-size: 16px;
font-weight: bold;
border: 2px solid transparent;
outline: none;
padding: 10px 40px;
border-radius: 5px;
cursor: pointer;
transition: .3s;
}
.gig-button:hover {
background: #030303;
color: #9b6158;
cursor: pointer;
border: 2px solid #9b6158;
transition: .3s;
}
.gig-container {
display: flex;
flex: 1 1 0px;
align-items: center;
}
.gig-list-container:first-child() {
border-top: none;
}
.gig-list-container:last-child() {
border-bottom: none;
}
.gig-container.btn {
justify-content: flex-end;
}
.gig-container.first {
justify-content: flex-start;
}
.gig-date {
color: #838383;
font-weight: 500;
}
@media (max-width: 675px) {
.gig {
display: flex;
flex-direction: column;
align-items: center;
flex-wrap: wrap;
justify-content: space-between;
height: auto;
text-align: center;
background: #111111;
padding: 25px 10px;
margin: 10px 0px;
}
.gig-container {
display: flex;
flex: 1 1 0px;
align-items: center;
padding: 5px 0;
}
}