
@font-face {
    font-family: "Roboto";
    src: url(fonts/Roboto/Roboto-Regular.ttf);
}

* {
    box-sizing: border-box;
}

:root {
    --background-color: white;
    --text-color: black;
    --accent-color: rgb(230, 230, 230);
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

body {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 1.1em;
    background-color: var(--background-color);
    color: var(--text-color);
}

h1 {
    margin-top: 0;
    margin-bottom: 5px;
}

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

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card {
    width: 100%;
    max-width: 750px;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10pt;
}

.header {
    display: flex;
    align-items: center;
    gap: 50px;
}

.links {
    display: flex;
    align-items: center;
    gap: 10pt;
}

.pfp {
    border-radius: 50%;
}

.body {
    flex: 1;
}

table {
    border-collapse: collapse;
}

table td, table th {
    border: 1px solid var(--accent-color);
    padding: 10px;
}

table tr:nth-child(2n) {
    background-color: var(--accent-color);
}

.footer {
    text-align: center;
}

@media (prefers-color-scheme: dark) {
    :root {
        --background-color: rgb(25, 25, 25);
        --text-color: white;
        --accent-color: rgb(73, 73, 73);
    }
}