@import url('https://fonts.googleapis.com/css2?family=Archivo+Narrow:ital,wght@0,400..700;1,400..700&family=Bruno+Ace&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&display=swap');

.font-bruno {
  font-family: "Bruno Ace", sans-serif;
}

html, body {
    background-color: var(--color-zinc-900);
    color: var(--color-white);
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    font-size: 16px;
}

h1 {
    font-weight: 800;
    font-size: 1.75rem;
}

h2, h3 {
    font-weight: 600;
    font-size: 1.5rem;
}

h4 {
    font-weight: 600;
    font-size: 1rem;
}

p {
    font-weight: 300;
    font-size: 1rem;
}

@media all and (max-width: 768px) {
    html,
    body {
        font-size: 14px;
    }
}