#image-modal{
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(0, 0, 0, 0.75);
    z-index: 10;
}
#enlarged-image{
    max-height: 75%;
} 
#image-modal button{
    font-size: 56px;
    color: white;
    outline: none;
    border: none;
    background: none;
    cursor: pointer;
    position: absolute;
    top: 5%;
    right: 5%;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 3%;
    width: 100%;
}

.slideshow{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: 300px;
    width: 50%;
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: white;
    margin-bottom: 1%;
    overflow: hidden;
    animation: come-up .7s linear;
    -webkit-animation:come-up .7s linear;
}
.slideshow img{
    height: 100%;
    padding: 1%;
    animation: fade 5s linear infinite 2.5s;
}
.slideshow .active-slide{
    display: flex;
    justify-content: center;
    position: absolute;
    height: 100%;
    width: 100%;
    color: transparent;
    text-decoration: none;
    font-weight: 700;
    font-size: 32px;
}
.slideshow .active-slide:hover{
    background-color: rgb(0, 0, 0, .2);
    color: white;
}

.quick-access{
    display: flex;
    align-items: center;
    width: 50%;
    height: 50px;
    border-radius: 25px;
    background-color: white;
    border: 1px solid black;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    overflow: hidden;
    animation: come-up .7s linear;
    -webkit-animation:come-up .7s linear;
}
.quick-access a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: black;
    text-align: center;
    animation: come-up .7s linear;
}
.quick-access a:hover{
    background-color: rgb(128, 128, 128, .5);
    transition: .3s linear;
}

.row-gallery {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
    margin: 2% 0;
}

/* Create four equal columns that sits next to each other */
.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 33%;
    max-width: 33%;
    padding: 0 4px;
    animation: come-down 0.7s linear;
    -webkit-animation:come-down .7s linear;

}

.column img {
    vertical-align: middle;
    width: 100%;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.cover-art-single{
    position: relative;
    width: fit-content;
    height: fit-content;
    margin-top: 8px;
    color: transparent;
    cursor: pointer;
    border: none;
    outline: none;
}
.cover-art-single h1{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    color: transparent;
}
.cover-art-single h1:hover{
    color: black;
    background-color: rgb(255, 255, 255, 0.8);
    transition: 0.4s linear;
}
.cover-art-single img{
    height: 100%;
    width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
    .column {
        flex: 50%;
        max-width: 50%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        flex: 100%;
        max-width: 100%;
    }
}

@media screen and (max-width:1200px) and (min-width:750px){
    .slideshow{margin-top: 5%;}
    .cover-art{margin: 1.5% 1%;}
}

@media screen and (max-width:749px){
    .slideshow{margin-top: 20%; width: 90%;}
    .quick-access{width: 90%;}
    .quick-access a{font-size: 10px;}
    #enlarged-image{width: 75%;}
}

@keyframes fade{
    0%, 100%{
        opacity: 1;
    }
    50%{
        opacity: 0;
    }    
}

@keyframes come-up{
    0%{
        translate: 0 7%;
        filter: opacity(0);
    }
    100%{
        translate: 0 0;
        filter: opacity(1);
    }
}
@keyframes come-down{
    0%{
        translate: 0 -2%;
        filter: opacity(0);
    }
    100%{
        translate: 0 0;
        filter: opacity(1);
    }
}