html {
    /* overflow: hidden; */
    font-family: sans-serif;
    color: white;
    background: hsl(0, 0%, 10%);
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
}

h1 {
    margin: 0 auto;
    text-align: center;
}

h1.page-title {
    padding-top: 4rem;
    margin-bottom: 2rem;
}

p {
    font-size: 1.25rem;
    margin: 0.5rem 0;
    margin-bottom: 1rem;
}

p a {
    color: hsl(0, 0%, 50%);
    text-decoration: none;
}

p a:hover {
    color: hsl(0, 0%, 50%);
    text-decoration: underline;
}


p a.external-link::after {
    content: "";
    /* content: url("/icons/external-link.svg"); */
    display: inline-block;
    width: 0.9rem;
    height: 0.9rem;
    margin-left: 0.5ch;
    vertical-align: baseline;

    -webkit-mask-image: url("/icons/external-link.svg");
    mask-image: url("/icons/external-link.svg");
    
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;

    background-color: currentColor;
}

.center-container {
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 0 5ch;
    align-items: center;
    justify-content: center;
}

.content-container {
    max-width: 80ch;
}

h-center {
    display: flex;
    width: calc(100% - 10ch);
    margin: 0 5ch;
    flex-direction: column;
    align-items: center;
}

a.page-link {
    display: inline-block;
    margin: 0.5rem 0;
    padding: 0.5em 1em;
    min-width: 10ch;

    color: white;
    font-size: 1.5rem;
    text-align: center;
    text-decoration: none;
    
    background: hsl(0, 0%, 20%);
    border: hsl(0, 0%, 30%) solid 3px;
}

a.page-link:hover {
    border-color: hsl(0, 0%, 40%);
}

.legal-container {
    display: block;
    width: 100%;
    padding: 2.5rem 0 1rem 0;
    text-align: center;
}

.legal-container a {
    color: hsl(0, 0%, 50%);
    margin: auto 1rem;
    font-size: 0.8rem;
    text-decoration: none;
}