@font-face {
    font-family: 'TeX Gyre Heros';
    src: url('../fonts/TeXGyreHeros-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TeX Gyre Heros';
    src: url('../fonts/TeXGyreHeros-BoldItalic.woff2') format('woff2');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TeX Gyre Heros';
    src: url('../fonts/TeXGyreHeros-Italic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TeX Gyre Heros';
    src: url('../fonts/TeXGyreHeros-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TeX Gyre Heros Cn';
    src: url('../fonts/TeXGyreHerosCondensed-Italic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TeX Gyre Heros Cn';
    src: url('../fonts/TeXGyreHerosCondensed-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    height: 100dvh;
    width: 100vw;

    display: flex;
    align-items: center;
    justify-content: space-around;

    background-color: whitesmoke;

    font-family: 'TeX Gyre Heros', Helvetica, sans-serif;
    font-size: 11pt;
    line-height: 1.3;
    
}

@media screen and (max-width: 620px) {
    body {
        font-size: 10pt;
    }
}

header {
    display: flex;
    flex-direction: row;
    margin: 6px;
}


@media screen and (max-width: 620px) {
    header {
        flex-direction: column;
    }
}

.title {
    display: flex;
    flex-direction: row;
}

@media screen and (max-width: 620px) {
    .title {
        margin-bottom: 24px;
    }
}

.psw {
    margin-right: 12px;
    font-family: 'TeX Gyre Heros Cn', Helvetica, sans-serif;
    letter-spacing: 0px;
}

.psw:last-of-type {
    margin-right: 20px;
}

a {
    color: blue;
    text-decoration: none;
}

.lynx a {
    color: black;
    text-decoration: none;
    margin-right: 12px;
}

.lynx a:hover {
    color: rgb(88, 88, 88);
    text-decoration: underline;
}


