html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    font-family: sans-serif;
    line-height: 1.2;
    font-size: 16px;
    padding-bottom: 30px;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}

.navigation-bar {
    position: sticky;
    background-color: #3d6d79;
    top: 0;
    z-index: 1;
}

.navigation-bar .items {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 10px 20px;
    line-height: 1;

    display: flex;
    align-items: end;
    gap: 20px;
    height: 80px;
}

.navigation-bar .home {
    flex: 1;
}

.navigation-bar .home .link {
    font-size: 24px;
}

.navigation-bar .link {
    color: white;
}

.navigation-bar .link:hover {
    text-decoration: underline;
}

main {
    max-width: 1600px;
    margin: auto;
}

@media screen and (min-width: 1024px) {
    .navigation-bar .items {
        gap: 50px;
        height: 100px;
        line-height: 0;
        padding: 0 10px 40px;
    }

    .navigation-bar .home .link {
        font-size: 50px;
    }

    .navigation-bar .link {
        font-size: 24px;
    }
}

.switcher-target {
    display: none;
}

.switcher-target.active {
    display: unset;
}