@font-face {
  font-family: lokkaFont; /* set name */
  src: url(Lokka.otf); /* url of the font */
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4.5vw;
    row-gap: 7vw;
}

.print-item {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.3s;
}

.print-item:hover {
    opacity: 0.8;
}

.print-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    margin-bottom: 1rem;
}

.print-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 0.5rem;
}

.print-title {
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: lokkaFont;
}

.print-price {
    font-size: 1rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}