* {
    margin: 0;
}

/* Prevent font size inflation
   https://kilianvalkhof.com/2022/css-html/your-css-reset-needs-text-size-adjust-probably/
*/
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

body {
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: 'Times New Roman', Times, Baskerville, Georgia, serif;
    font-size: 100%;
    background-color: #2b3042;
    color: #ffffff;
    padding: 1em 2em 1em 2em;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
label {
    line-height: 1.1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
    font-weight: bold;
}

input,
button,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: #b5cc39;
    text-decoration: underline;
}

a:focus {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

header {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    column-gap: 2em;
    margin-bottom: 2em;
}

header div {
    width: 350px;
    text-align: center;
}

header div img {
    margin: 0 auto;
}

h1 {
    font-size: 6em;
}

body {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
}

.links-list {
    margin: 0 auto;
    list-style: none;
    padding: 0;
    font-size: 2em;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
}

