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

body {
    background-color: var(--color-background);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ===========================
   Typography
   =========================== */

   h2 {
    font-family: "Roboto Mono", monospace;
    font-weight: 600;
    margin-bottom: 1rem;
   }

   p {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 1rem;
   }

/* ===========================
   Typography
   =========================== */
