* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/*body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
        Cantarell, sans-serif;
    padding: 20px;
    background: #f5f5f5;
}*/
@media (width > 0px) {
    .container {
        max-width: 90%;
    }
}

@media (width > 580px) {
    .container {
        max-width: 520px;
    }
}

@media (width > 1000px) {
    .container {
        max-width: 920px;
    }
}

@media (width > 1350px) {
    .container {
        max-width: 1280px;
    }
}

.container {
    margin: 0 auto;
}

h1 {
    margin-bottom: 10px;
    color: #333;
}

.description {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.5;
}

.masonry {
    display: grid;
    overflow: hidden;
    gap: 40px;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    transition: opacity 0.3s ease;
}

/* Hide grid until JS loads to prevent FOUC */
.hidden {
    opacity: 0;
}

.frame {
    aspect-ratio: var(--width) / var(--height);
    /*background-color: var(--color);*/
    display: flex;
    align-items: top;
    justify-content: center;
    /*font-size: 18px;
    font-weight: bold;*/
    color: rgba(0, 0, 0, 0.3);
}

.masonry img {
    width: 100%;
}

.masonry a {
    text-decoration: none;
}

.mansonry-card h5 {
    text-transform: uppercase;
    font-family: "poppinsregular", sans-serif;
    font-weight: 100;
    font-size: 26px;
}

.mansonry-card p {
    font-size: 14px;
}

footer {
    padding-bottom: 200px;
}
