.landing{
    width: 100vw;
    height: 100vh;
    position: relative;
    background-image: url(../images/landing.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.landing .landing-title{
    color: white;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.landing .landing-title h1{
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.landing .landing-title h4{
    letter-spacing: 0.5em;
    text-indent: 0.75em;
    text-transform: uppercase;
    font-weight: 400;
}
.landing > .hint{
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    gap: 0px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}
.landing > .hint h6{
    font-weight: 400;
}
.gallery{
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
    margin-top: 64px;
    margin-bottom: 64px;
}
.gallery a{
    text-decoration: none;
    appearance: none;;
}
.gallery .gallery-block{
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--foreground-color);
}
.gallery .gallery-block p{
    font-style: italic;
}
/* Using padding top to lock aspect ratio referencing from https://www.w3schools.com/howto/howto_css_aspect_ratio.asp */
.gallery .gallery-block .gallery-thumbnail{
    width: 100%;
    padding-top: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}
.gallery .gallery-block .gallery-thumbnail .img{
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.gallery .gallery-block .gallery-thumbnail .view{
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    font-size: 18px;
    font-weight: medium;
    font-style: italic;
    padding: 8px 46px;
    background-color: var(--background-color);
    box-shadow: 4px 4px 0px var(--highlight-color);
    border-radius: 8px;
}
.gallery .gallery-block:hover .gallery-thumbnail .view{
    display: inline-table;
}
.gallery .gallery-block:hover .gallery-thumbnail .img{
    filter: blur(12px);
}
.gallery .line{
    display: none;
}
@media screen and (max-width: 1024px){
    .gallery{
        grid-template-columns: 1fr;
        gap: 0px;
    }
    .gallery .gallery-block{
        gap: 6px;
        align-items: flex-start;
        position: relative;
        padding-bottom: 48px;
    }
    .gallery .gallery-block.right{
        align-items: flex-end;
    }
    .gallery .gallery-block p{
        font-size: 14px;
        max-width: 70%;
    }
    .gallery .gallery-block h3{
        position: absolute;
        z-index: 100;
        right: 0;
        font-size: 48px;
        top: 48px;
    }
    .gallery .gallery-block.right h3{
        left: 0;
        text-align: left;
    }
    .gallery .gallery-thumbnail{
        max-width: 70%;
    }
    .gallery .line{
        display: block;
        position: absolute;
        width: 40%;
        height: 70%;
        right: 0;
        bottom: 0;
    }
    .gallery .line.left{
        left: 0;
        right: unset;
        /*Learn how to flip image from https://www.w3schools.com/howto/howto_css_flip_image.asp*/
        transform: scaleX(-1);
    }
}