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

:root {
    --background: #070707;
    --text: #f1f1f1;

    font-family: 'HankenGrotesk', sans-serif;
    font-size: 18px;
    color: var(--text);
    background-color: var(--background);
}

#root {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    margin-bottom: 0.5rem;
    font-family: 'JetBrainsMono', monospace;
    font-size: 4rem;
}

ul {
    margin: 1.5rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media screen and (min-width: 768px) {
    ul {
        flex-direction: row;
    }
}

li {
    text-align: center;
}

ul p {
    display: none;
}

@media screen and (min-width: 768px) {
    ul p {
        display: block;
    }
    
}

a {
    text-decoration: none;
    color: var(--text);
    font-family: 'JetBrainsMono', monospace;
    transition: 0.3s ease;
}


a:hover {
    text-decoration: underline;
    font-weight: 700;
}

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

@font-face {
  font-family: HankenGrotesk;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("./assets/fonts/HankenGrotesk-Italic-VariableFont_wght.ttf") format("truetype");
}

@font-face {
  font-family: JetBrainsMono;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./assets/fonts/JetBrainsMono-VariableFont_wght.ttf") format("truetype");
}

@font-face {
  font-family: JetBrainsMono;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("./assets/fonts/JetBrainsMono-Italic-VariableFont_wght.ttf") format("truetype");
}