:root {
    --color-border: #333;
    --color-text: #333;
}

body {
    padding: 1rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
p {
    margin-bottom: 1rem;
}

#about-text {
    margin-bottom: 3rem;
}

.tabs .tabs__tab-list {
    display: flex;
}

.tabs .tabs__tab-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.tabs .tabs__tab-list li {
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}

.tabs .tabs__tab-list li:last-of-type {
    border-right: 1px solid var(--color-border);
}

.tabs .tabs__tab-list a,
.tabs .tabs__tab-list a:hover,
.tabs .tabs__tab-list a:visited,
.tabs .tabs__tab-list a:active {
    text-decoration: none;
    color: var(--color-text);
    padding: 0.25rem 1rem;
}

.tabs .tabs__tab-list a:hover {
    text-decoration: underline;
}

.tabs .tabs__tab-list a.current {
    font-weight: bold;
}

.tabs .tabs__content {
    display: flex;
    flex-direction: row;
    border: 1px solid var(--color-border);
    width: 100%;
    min-height: 50vh;
    padding: 1rem;
    overflow-x: auto
}

code {
    background: transparent;
    display: block;
    font-size: 0.9rem;
}
