body {
    background-color: rgb(250,245,245);
    font-family: "Libre Franklin", serif;
    text-align: center;
    font-size: 1em;
    cursor: auto;
}

.wrapper {
    margin: 2em;
    margin-bottom: 3em;
}

h2 {
    color: var(--darker);
    margin: 0;
}

a {
    color: var(--dustyrose);
    font-weight: normal;
    text-decoration: none;
    display: inline-block;
}

a:hover {
    color: var(--darkerrose);
    font-weight: normal;
    text-decoration: none;
}

.gallery {
    column-count: 3; 
    column-gap: 1em;
}

.post {
    break-inside: avoid-column;   
    margin-top: 0;
    margin-bottom: 2em;
    width: 100%;
    opacity: 0.5;
}

.post img {
    width: 100%;;
}

.post p {
    margin: 0.5em;
    text-align: left;
    font-size: 0.8em;
}

.post:hover {
    opacity: 1;
    cursor:cell;
}

@media only screen and (max-width: 800px) {

    .wrapper {
        margin: 0.5em;
    }

    .gallery {
        column-count: 1;
    }

    .post {
        opacity: 1;
    }
}