* {
    box-sizing: border-box;
}

:root {
    --accent: #89e975;
    --bg: #171717;
    --border: #242424;
    --white: #e6e6e6;
    --white-dull: #a6a6a6;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    background: var(--bg);
    padding-top: 5vh;
    gap: 20px;
}

h1,
h2,
span,
i,
strong,
tr td time {
    color: var(--white);
}

a {
    color: var(--accent);
}

hr {
    width: 80%;
    color: var(--border);
}

section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    width: 60%;
    min-width: 400px;
    border-left: 4px solid var(--border);
    padding: 20px 40px;
    background: rgb(25, 25, 25);
    outline: 1px solid rgb(45, 45, 45);
    border-radius: 2px;
    box-shadow: 0 0 10px 5px rgba(20, 20, 20, 0.5);
}

section h2 {
    width: 100%;
    text-align: left;
}

table {
    width: 100%;
    outline: 1px solid var(--border);
    padding: 10px;
    border-collapse: collapse;
}

table tr th {
    color: var(--white-dull);
    padding: 10px;
}

table tr td {
    outline: 1px solid var(--border);
    text-align: center;
    padding: 10px;
}

h2 {
    font-family: "Courier New", Courier, monospace;
    text-transform: uppercase;
}
