:root {
    --max-width: 980px;
    --half-width: calc((var(--max-width) / 2));
}

body {
    margin: 0px;
    padding: 0px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;

    box-sizing: border-box;
}

body::-webkit-scrollbar {
    display: none;
}

p {
    margin-block-start: 0px;
    margin-block-end: 0px;
    line-height: 1.5em;
    height: auto;
    font-size: 18px;
    font-family: 'Times New Roman', Times, serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: var(--max-width);
}

header, main, footer {
    display: grid;
    grid-auto-rows: minmax(70px, auto);
    grid-template-columns: 100%;
}