/* General */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color: whitesmoke;
    color: darkslategray;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 800px;
}

/* Header */

header {
    background-color: darkslategray;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 48px;
    color: whitesmoke;
}

header .subtitle {
    font-family: "JetBrains Mono", monospace;
    font-size: 24px;
    color: whitesmoke;
    margin-top: 10px;
}

/* Main Content */

main {
    font-size: 20px;
    line-height: 1.7;
    padding: 30px 0;
}

main p {
    margin-bottom: 28px;
}

main h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 32px;
    color: mediumturquoise;
    margin: 40px 0 16px;
}

/* Responsive */

@media (max-width: 600px) {
    header h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 20px;
    }

    main {
        font-size: 18px;
    }

    main h2 {
        font-size: 28px;
    }
}