@font-face {
    font-family: 'Hanken Grotesk';
    src: url('../font/HankenGrotesk-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hanken Grotesk', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em;
    font-size: 1.2rem;
    font-weight: 450;
}

main {
    text-align: center;
    margin-bottom: 6em;
}

h1 {
    font-size: 2.2em;
    font-weight: 650;
    margin-bottom: 0.25em;
    line-height: 1.2;
}

.keywords {
    margin-bottom: 1.5em;
}

a,
a:visited {
    color: #333;
    text-decoration: none;
    border-bottom: 2px solid #8f70f7;
    transition: border-color 0.1s ease;
}

a:hover {
    border-color: #fff;
}

@media (max-width: 320px) {
    body {
        font-size: 1rem;
    }
    .keywords {
        hyphens: auto;
    }
}