

/*# sourceMappingURL=styles.css.map */

@font-face {
    font-family: LemonJelly;
    src: url(/fonts/LemonJelly.ttf);
}
  
h1 {
    font-family: Alice;
}

h2 {
    font-family: Alice;
}

.subtitle {
    font-family: "Malgun Gothic Semilight";
}

#gallery--production {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}        

@media screen and (min-width: 1024px) {
    #gallery--production {
        grid-template-columns: repeat(3, 1fr);
    }        
}

#gallery--production img {
    border-radius: 1rem;
    object-fit: cover;
}