
body {
    margin: 0;

    font-family: "Inter", sans-serif;
}
header {
    height: 80vh;
}
header>header-inner {
    height: calc(80vh - 70px);

    display: flex;
    max-width: 840px;
    padding-left:  20px;
    padding-right: 20px;

    margin-left:  auto;
    margin-right: auto;
}

header-meta {
    max-width: 350px;

    display: flex;
    flex-direction: column;
}
header-meta * {
    display: block;
}
header-subtitle {
    font-weight: 300;
    font-size: 20px;
}
header-title {
    padding-top: 10px;
    font-weight: 500;
    font-size: 30px;
}
header-text {
    padding-top: 20px;
    line-height: 2;
}

header>navbar {
    display: flex;
    max-width: 840px;
    padding-left:  20px;
    padding-right: 20px;
    height:    70px;

    margin-left:  auto;
    margin-right: auto;
}
header>navbar>nav-logo {
    background: url(/assets/logo.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 210px;
    height: 70px;
    cursor: pointer;
}
header>navbar>nav-spacing {
    flex-grow: 1;
}
header>navbar>nav-title {
    padding-left: 30px;
    margin-top: auto;
    margin-bottom: auto;

    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    user-select: none;
}

header>navbar :has(a) {
    position: relative;
}
header>navbar a {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}

.flex {
    display: flex;
}
.flex-1 {
    flex-grow: 1;
}

logo-c {
    margin: auto;
    display: block;
    background: url(/assets/logo-classical.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 210px;
    height: 70px;
    cursor: pointer;
}
logo {
    margin: auto;
    display: block;
    background: url(/assets/logo.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 210px;
    height: 70px;
    cursor: pointer;
}
logo-polyparser {
    margin: auto;
    display: block;
    background: url(/assets/polyparser.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 210px;
    height: 60px;
    cursor: pointer;
}

a {
    color: inherit; /* blue colors for links too */
    text-decoration: inherit; /* no underline */
  }