:root {
    --docbg-color: #bef1f7;
    --bg-color: #1a1a1a;
    --text-color: #f0f0f0;
    --border-color: #524702;
    --primary-color: #e8dfa1;
    --second-color: #57a5ad;
    --_3th-color: #e8a1a1;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

 html {
        font-size: 62.5%;
        color: var(--text-color);
}

body {
    font-size: 16px;
    font-family: "Bitcount Prop Single", system-ui;
    background-color: var(--docbg-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Bitcount", system-ui;
}

@media  (max-width: 60rem) {
    header {
        flex-direction: column;
        text-align: center;
    }
}