body {
    margin: 0;
    padding: 0;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #111;
    text-align: center;
}

::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

h1 {
    font-family: "Archivo Black", sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #222;
}

h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.3rem;
}

p {
    font-size: 1rem;
    margin: 0.25rem 0;
}

a {
    color: #007acc;
    text-decoration: none;
    transition: color 0.5s;
}

a:hover {
    color: #005f99;
    text-decoration: underline;
}

code {
    background-color: #eee;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: "Space Grotesk", monospace;
}

img {
    display: block;
    width: 100%;
    height: auto;
    margin: 1rem auto 2rem auto;
    border-radius: 32px;
    box-shadow: 8px 8px 8px rgb(155, 160, 165);
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 1rem;
    }
}