:root {
    --bg-color: #09090B;
    --text-color: #FAFAFA;
    --text-color-alt: #A1A1AA;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: monospace;
    margin: 0;
    padding: 0;
}

main {
    max-width: 600px;
    width: 90%;
    margin: 2rem auto;
}

header {
    display: grid;
    margin-bottom: 2rem;
    justify-content: center;
    text-align: center;
}

header > img {
    margin: 0 auto 1rem;
    width: auto;
    height: 6rem;
    border-radius: 100%;
}

header > h1 {
    font-size: 1.5rem;
    margin: 0;
}

header > h2 {
    color: var(--text-color-alt);
    font-size: 0.8rem;
    margin: 0;
}

header > p {
    font-size: 1rem;
}

section {
    display: grid;
    justify-content: center;
    row-gap: 1rem;
}

section > a {
    display: grid;
    grid-template-columns: 2.5rem auto;
    column-gap: 1rem;
    border: 1px solid var(--text-color-alt);
    border-radius: 0.5rem;
    padding: 0.8rem;
    text-decoration: none;
    color: var(--text-color);
}

section img {
    width: 100%;
    height: auto;
}

section h1 {
    margin: 0;
    font-size: 1rem;
}

section > a:hover h1 {
    text-decoration: underline;
}

section p {
    margin: 0;
    font-size: 0.8rem;
}
