﻿main {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

section {
}

blockquote {
    margin: revert;
}

.art-button {
    background-color: #598087;
    color: white;
    cursor: pointer;
    padding: 0.5rem 1rem;
    height: auto;
    line-height: 1.25rem;
    min-height: 2.25rem;
    min-width: 2.25rem;
    font-weight: 600;
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    background-size: auto;
    background-repeat: no-repeat;
    border: none;
    border-radius: 4px;
    outline: none;
    box-shadow: none;
    font-size: 1.0625rem;
    font-family: inherit;
    text-decoration: none;
    -webkit-appearance: none;
}

    .art-button:hover {
        filter: brightness(1.1); /* 10% lichter */
        box-shadow: 0 .6rem 1.2rem rgba(0,0,0,.18);
    }

    .art-button a {
        color: #eeeeee;
        cursor: pointer;
    }

        .art-button a:hover {
            color: white;
            cursor: pointer;
            text-decoration: none;
        }
