﻿:root {
    --brand-color: black;
    --link-color: blue;
    --shadow-color: rgba(0, 0, 0, 0.2);
}


@media (prefers-color-scheme: dark) {
    /* dark theme */
    :root {
        --background-color: black;
        --text-color: white;
        --brand-color: #e3000b;
        --link-color: #e3000b;
        --shadow-color: rgba(227, 0, 11, 0.2);
    }
}


html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: var(--background-color);
    color: var(--text-color);
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:visited {
  color: var(--link-color);
}

.center {
  text-align: center;
}

canvas {
  width: 95%;
  max-width: 1400px;
  margin:  16px auto;
}

.center-content {
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
}


nav {
    display: flex;
    justify-content: space-around;
    padding: 16px;
    box-shadow: 0px 4px 8px var(--shadow-color);
    margin-bottom: 24px;
}

nav > div {
  display: flex;
  align-items: center;
}

.brand {
  font-size: 24px;
  color: var(--brand-color) !important;
}



table, th, td {
  border: 1px solid;
  border-collapse: collapse;
}

.content {
    padding-bottom: 200px;
}



















