body {
    --blue: #0a1c36;
    --white: #e7dfd5;
    --accent: #e37724;
    background-color: var(--blue);
    color: var(--white);
    font-family: sans-serif;
    font-size:14px;
    line-height:1.55rem;
}

section {
    display: grid;
    gap: 1rem;
    margin: 1rem 0;
}

p {
    margin: 0;
}

.box {
    display: grid;
    border-radius: .5rem;
    background-color: transparent;
    padding: 1rem;
    border: 1px solid var(--white);
    grid-template-rows:auto fit-content(100%);
    gap: 1rem;
}

.box.invert {
    background-color: var(--white);
    color: var(--blue);
}


.top {
    grid-template-columns:1fr;

    @media (min-width: 540px) {

        grid-template-columns:1fr .5fr;
    }
}

.content {
    grid-template-columns:1fr;

    @media (min-width: 900px) {

        grid-template-columns:.5fr 1fr;
    }
}

.box header {
    font-weight: bold;
    font-family: monospace;
    display: block;
}

.box header span {
    border-bottom: 3px solid var(--accent);
}
.intro p.wide {
    font-size: 2.5rem;
    line-height: 2.5rem;
    font-weight: bold;
    letter-spacing: -.09rem;
    margin:1rem 0;
}

.invert strong {
    color: var(--accent);
}

.counter {
    display: grid;
    grid-template-rows:auto 1fr;
    gap: .25rem;
    text-align:left;
}

.counter .value {
    font-size: 2rem;
    line-height: 2rem;
    font-weight: bold;
}

.counter .value small {
    font-weight: normal;
}

.counter .caption {
    font-weight: lighter;
    font-size: .9rem;
    line-height: 1.2rem;
}

.counter-line {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    box-sizing: border-box;
}

img {
    border-radius: .5rem;
}

.wrapper {
    max-width: 1024px;
    margin: 0 auto;
}

.btn {
    color:inherit;
    font-size:.8rem;
    font-weight:bold;
    text-decoration: none;
    padding:.5rem;
    border:2px solid var(--blue);
    border-radius:.5rem;
    display:inline-block;
    margin:.1rem;
}

blockquote p {
    margin:1rem 2rem;
    font-weight:bold;
}

blockquote .author {
    text-align:right;
    font-size:.8rem;
}

.box-content {
    padding:1rem;
}

.content p {
    margin:1.5rem 0;
}

body {
    margin:0px;
    padding:0px;
}

h1 {
    font-size:1.5rem;
    line-height:2rem;
}

h2 {
    font-size:1.3rem;
    line-height:1.7rem;
}