body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: rgb(26, 25, 25);
    justify-content: center;
}

header {
    background: red;
    color: white;
    padding: 20px 0;
}


.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Flexible columns */
    gap: 15px; /* Space between items */
    width: 200px;
    max-width: 500px;
    margin: 0 ;
}


.bilde {
    width: 300px;
    height: 300px;
    padding: 5px;
    border-color: blue;
    border-style: groove;
    border-width: 5px;
    border-radius:10px;
}

.bilde:hover {
    border-color: red;
}



p {
    margin: 0;
    padding: 10px;
    font-size: 14px;
    color: white;
}

