*, *::before, *::after {
    box-sizing: border-box;
}

@property --text-color {
    syntax: "<color>";
    inherits: false;
    initial-value: #ffffff;
  }

@property --background-color {
    syntax: "<color>";
    inherits: false;
    initial-value: #e51d2b;
  }

body {
    font-family: 'Chakra Petch', 'Courier New', Courier, monospace;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: fit-content;
    min-height: 80vh;
    padding-bottom: 6rem;
}

h1 {
    font-family: 'Handjet', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 400;
    font-size: 3rem;
    text-align: center;
}

.section-header {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 100;
}

.section-header::after {
    display: block;
    content: " ";
    margin-top: 3px;
    height: 0.75px;
    width: 100vw;
    max-width: 50rem;
    background-color: white;
}

.links-block {
    display: block;
    text-align: center;
}

.links-block li {
    list-style: none;
    font-weight: 600;
}

.links-block a, a {
    text-decoration: underline dotted 2px;
    color: var(--text-color);
    font-weight: normal;
    font-size: 1rem;
}

.links-block a:hover, a:hover {
    color: #4b0000;
}

.links-block::after {
    display: block;
    content: " ";
    height: 1px;
    padding-bottom: 3rem;
}

.links-block:last-of-type::after {
    display: block;
    content: " ";
    height: 0;
    padding: 0;
}

footer {
    position: fixed;
    width: 100vw;
    vertical-align: middle;
    height: 6.5rem;
    bottom: 0;
    background: linear-gradient(0deg, var(--background-color) 40%,transparent);
}

footer p {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    vertical-align: middle;
    margin: 0;
    padding-bottom: 1rem;
}

footer img {
    filter: brightness(0) invert(1);
    vertical-align: top;
}