/* This is your main container */
#hoved {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

/* Gallery wrapper */
#bilder {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns per row */
    gap: 10px; /* space between items */
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
}

/* Each individual image container */
.bilde {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* The image itself */
.bilde img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Keeps square ratio */
    object-fit: cover;
}

/* Optional: Description text */
.bilde p {
    margin: 10px 0;
    font-size: 14px;
    text-align: center;
    color: #333;
}
