:root {
  --main-text-color: white;
  --header-background-color: black;
  --background-color: black
}

html, body {
    height: 100%;
    margin: 0;
}

#container {
    height: 100%;
    background-color: var(--background-color);
    color: var(--main-text-color);
    font-family: Arial, Helvetica, sans-serif;
}

header {
    width: 100%;
    height: 120px;
    padding: 10px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.verticalBar {
    height: 70%;
    width: 2px;
    background-color: var(--main-text-color);
    margin: 0 10px;
}
#title {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}
#titleText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#title h1 {
    font-size: 42px;
    font-family: "Orbitron";
    margin: 0;
}
#title h2 {
    font-family: sans-serif;
    margin: 0;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
#contact {
    width: 200px;
}
#links {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
#contact a, a:visited {
    text-decoration: none;
    color: var(--main-text-color)
}
