@font-face {
    font-family: "Instrument Serif";
    src: url("/instrument-serif-latin-400-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    background: #060810;
    color: #f2f0e8;
    font:
        15px/1.7 system-ui,
        sans-serif;
    background-image: radial-gradient(circle at 75% 5%, rgba(119, 217, 185, 0.1), transparent 24%);
}
nav {
    height: 76px;
    padding: 0 max(6vw, 24px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(200, 208, 223, 0.12);
}
nav img {
    width: 104px;
    display: block;
}
a {
    color: #77d9b9;
    text-decoration: none;
}
main {
    width: min(850px, calc(100% - 40px));
    margin: auto;
    padding: 90px 0 120px;
}
header {
    margin-bottom: 55px;
}
header span {
    color: #77d9b9;
    font: 600 9px monospace;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
h1,
h2 {
    font-family: "Instrument Serif", Georgia, serif;
    font-weight: 400;
}
h1 {
    max-width: 700px;
    margin: 18px 0;
    font-size: clamp(50px, 7vw, 82px);
    line-height: 0.92;
    letter-spacing: -0.04em;
}
header p {
    max-width: 670px;
    color: #aab4bf;
}
section {
    margin: 14px 0;
    padding: 25px 27px;
    border: 1px solid rgba(200, 208, 223, 0.12);
    border-radius: 15px;
    background: rgba(17, 29, 40, 0.58);
}
h2 {
    margin: 0 0 12px;
    font-size: 25px;
}
section p,
li {
    color: #c1c8d0;
}
li + li {
    margin-top: 8px;
}
@media (max-width: 600px) {
    main {
        padding-top: 65px;
    }
    section {
        padding: 20px;
    }
    h1 {
        font-size: 51px;
    }
}
