* {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

html {
    height: 100vh;
}

body {
    display: flex;
    height: inherit;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

header {
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

header img, header svg {
    height: 1.75rem;
}

main {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 50rem;
    text-align: center;
    padding: 0 5rem;
}

main > div {
    border-bottom: 3px solid var(--ars-color-secondary-1);
    padding-bottom: .5rem;
    font: var(--ars-type-page-titles-10);
    font-family: "Major Mono Display", monospace;
    color: var(--ars-color-secondary-1);
    font-size: 4rem;
}

main > p:nth-of-type(1) {
    font: var(--ars-type-page-titles-1);
    color: var(--ars-color-secondary-1);
}

main > p:nth-of-type(2) {
    font: var(--ars-type-content-8);
    color: var(--ars-color-secondary-2);
    line-height: 1.7rem
}

main > p:last-of-type {
    font: var(--ars-type-content-6);
    color: var(--ars-color-secondary-3);
    line-height: 2.1rem;
}

footer {
    align-self: stretch;
}

footer ul {
    display: flex;
    padding: 1rem 0;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    font: var(--ars-type-content-3)
}


footer ul li::before {
    position: relative;
    bottom: 0.13rem;
    content: "";
    border-radius: 100px;
    display: inline-block;
    background-color: var(--ars-color-secondary-1);
    height: 8px;
    width: 8px;
    margin-right: 8px;
}

footer a, main p > a {
    color: var(--ars-color-secondary-1);
    transition: color 150ms ease-in-out;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
}

main p > a {
    color: var(--ars-color-secondary-2);
}

footer ul li:last-child a {
    font-size: 1.2rem;
    font-weight: 700;
}

footer a:hover, main a:hover {
    color: var(--ars-color-primary-5) !important;
    cursor: pointer;
}

footer a svg {
    display: inline-block;
}
