/* tyyli.css - Galleria tyyli */

body {
    background-color: #f5f5f5;
    margin: 20px;
}

h1 {
    font-size: 60px;
    font-family: courier new;

}
h2 {
    font-family: sans-serif;
}
p {
    font-family: serif;
    max-width: 800px;
}

div.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

div.gallery-item {
    margin: 5px;
    border: 1px solid #ccc;
    width: 400px; /* gallery image width */
    overflow: hidden;
    background-color: #fff;
}

div.gallery-item:hover {
    border: 1px solid #777;
}

div.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

div.gallery-item div.desc {
    padding: 15px;
    text-align: center;
    color: #333;
    font-size: 14px;
    font-family: sans-serif;
}
@media (prefers-color-scheme: light) {
    a {
        color: black;
    }

    body {
        background-color: white;
        color: black;
    }
    p {
        color: black
    }




}
@media (prefers-color-scheme: dark) {
    a {
        color: white;
    }
    body {
        background-color: black;
        color: white;
    }
    p {
        color: white
    }


}
@media screen and (max-width: 1080px) {
    width: 100%;
}
