@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --gray: #c0c0c0;
    --white: #ffffff;
    --dark: #141313;
    --blue: #42b7f3;
    --bodyBackground: #1f1d1d;
}

body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    color: var(--white);
    background-color: var(--bodyBackground);
    margin: 0;
    padding: 0;
    height: 100%;
}

a {
    text-decoration: underline;
    font-weight: 500;
    color: #e0e0e0;
}

img {
    max-width: 100%;
}

pre {
    white-space: pre-wrap;
    line-break: anywhere;
}

.font-white {
    color: var(--white) !important;
}

.font-gray {
    color: var(--gray) !important;
}

.font-blue {
    color: var(--blue);
}

.content {
    margin: 3rem;
}

:nth-child(1) {
    --index: 1;
}

:nth-child(2) {
    --index: 1;
}

:nth-child(3) {
    --index: 2;
}

:nth-child(4) {
    --index: 3;
}

:nth-child(5) {
    --index: 4;
}

:nth-child(6) {
    --index: 5;
}

:nth-child(7) {
    --index: 6;
}

.topic {
    margin: 1rem 0;
}

.share-button {
    border: none;
    border-radius: 5px;
    padding: 0.25rem 0.5rem;
    background-color: var(--blue);
    color: var(--white);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.9;
    text-transform: uppercase;
}

li {
    margin-bottom: .3rem;
}