:root {
    --navbar-height: 50px;
    --footer-height: 50px;
    --main-min-height: calc(100dvh - (var(--navbar-height) + var(--navbar-height)));
}

* {
    margin: 0;
    padding: 0;
}

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

html, body {
    background-color: #ffffff;
}

body {
    font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    min-height: 100dvh;
}

input, button, textarea, select {
    font: inherit;
}

p {
    text-wrap: pretty;
}

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

img, video, svg {
    height: auto;
    max-width: 100%;
}

a {
    text-decoration: none;
}

ol, ul {
    list-style: none;
}

@media (prefers-reduced-motion: reduce)  {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        transition: none;
    }
}

.container {
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    text-align: center;
}

.content > h1 {
    color: #1d1d1f;
    line-height: 1.0625;
    font-weight: 600;
    letter-spacing: -.009em;
    font-size: min(5vh, 6rem);
}

.content > p {
    color: #1d1d1f;
    font-size: 2vh;
}

.content > hr {
    margin: 2rem 0;
    border: 0;
    border-top: 1px rgb(33, 37, 41) solid;
    opacity: .25;
}


.contact {
    font-size: 2vh;
}

.contact > span {

}

.contact > a {
    color: #06c;
    letter-spacing: inherit;
}

.contact > a:hover {
    text-decoration: underline;
}