* {
    font-family: 'Arial', 'Noto Sans', sans-serif;
    font-size: 1.2em;
    background-color: white;
    color: black;
}

a {
    all: inherit;
    padding: 0;
    margin: 0;
}

h1 {
    font-size: inherit;
}

h2 {
    font-size: 1em;
}

h3 {
    font-size: .8em;
}

.header {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    gap: .85em;
    min-width: 17em;
    color: white;
}

.header > * {
    box-shadow: .3em .4em black;
}

.header #titleCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: red;
    color: inherit;
    padding: 1em;
    border: transparent;
    border-radius: 2em;
}

.header #titleCard * {
    background-color: inherit;
    color: inherit;
}

.header #buttonList {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border: .125em solid blue;
    border-bottom: transparent;
    background-color: blue;
    color: inherit;
}

.header #buttonList button {
    font-size: .5em;
    padding: .75em;
    border: transparent;
    background-color: inherit;
    color: inherit;
    border: transparent;
}

.header #buttonList button:hover {
    text-decoration: underline;
}

.posts {
    margin: 2em;
}