#opener{
    width: calc(100vw - 24px);
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin: 48px 12px 12px 12px;
}
#opener-image, #opener-text{
    width: 50vw;
    height: 100%;
}
#opener-image {
  position: relative;
  overflow: hidden;
}

#opener-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#opener-text h1, #opener-text h2, #opener-text h3, #opener-text p, #opener-text a{
    margin-bottom: 18px;
    font-size: var(--font-size-L);
}

#project-gallery{
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: calc(100vw - 24px);
    margin: 12px;
    flex-wrap: wrap;
}
#project-gallery .image-container{
    width: calc(50vw - 18px);
}
#project-gallery .image-container img, #project-gallery .big-image-container img, #project-gallery .big-image-container video{
    width: 100%;
}
#project-gallery .big-image-container{
    width: calc(100vw - 12px);
}
.caption{
    background: transparent;
    padding: 4px 0;
    color: #000;
    margin-top: -4px;
}
#album-tags{
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
}
#album-tags a{
    text-decoration: none;
    margin-bottom: 0px;
}
.album-tag{
    width: fit-content;
    border-radius: 10px;
    background: #CEFF48;
    box-shadow: 
        0 0 3px 0 #CEFF48,
        0 0 5px 0 #CEFF48, 
        0 0 10px 0 #CEFF48,
        0 0 15px 0 #CEFF48,
        0 0 25px 0 #CEFF48;
    border: none;
    font-size: var(--font-size-M);
    cursor: pointer;
    color: #000;
    letter-spacing: -1px;
    height: 20px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    margin: 0;
    white-space: nowrap;
    
}
.album-tag:hover{
    border-radius: 10px;
    background: #000;
    box-shadow: 
        0 0 3px 0 #000,
        0 0 5px 0 #000, 
        0 0 10px 0 #000,
        0 0 15px 0 #000,
        0 0 25px 0 #000;
    color: #B7B7B7;
}
.album-cta{
    text-decoration: none;
    position: fixed;
    right: 12px;
    bottom: 0px;
    z-index: 100;
}


/* RELATED PROJECTS */

#related-projects{
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: calc(100vw - 24px);
    align-items: end;
    margin: 0px 0px 12px 12px;
    height: fit-content;
}

.margin-top-big{
    margin-top: 120px;
    margin-left: 12px;
    margin-bottom: 24px;
}
/* .related-project{
    display: flex;
} */

@media screen and (max-width: 900px) {
   #opener{
        width: calc(100vw - 24px);
        height: fit-content;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 48px 12px 12px 12px;
    }
    #opener-image img{
        position: relative;
    }
    #opener-image, #opener-text{
        width: 100%;
        height: fit-content;
    }
    
    #project-gallery {
        flex-direction: column;
    }
    #project-gallery .image-container {
    width: 100%;
    }
    #related-projects{
        flex-direction: column;
    }

    #opener-text h1, #opener-text h2, #opener-text h3, #opener-text p, #opener-text a{
    margin-bottom: 18px;
    font-size: var(--font-size-M);
}
#album-tags a{
    text-decoration: none;
    margin-bottom: 0px;
}
#project-gallery .big-image-container{
    width: calc(100vw - 24px);
}
footer{
    margin-bottom: 48px;
}
.album-cta button{
font-size: var(--font-size-M);
}
}
@media screen and (max-width: 700px) {
    
}