:root {
  --text-color: 254, 255, 254;
  --background-color: #110b11;
  --accent-color: 69, 143, 255;
}

body {
  background-color: var(--background-color);
  color: rgb(var(--text-color));
  margin: 0;
}

/* Make flexboxes flexboxes */
.flex {
  display: flex;
}

/* Make links look nicer */
a {
  color: rgb(var(--accent-color));
}
a:hover {
  color: rgb(var(--accent-color));
}
a:visited {
  color: rgb(var(--accent-color));
}

/* Navbar */
nav {
  height: 10vh;
  align-items: center;
  font-size: 1.5em;
}
nav ul {
  padding-left: 0;
}
nav li {
  list-style-type: none;
  padding: 10px;
}
nav li:first-child {
  padding-left: 2vw;
}
nav p {
  margin: 0;
}
nav a {
  text-decoration: none;
  color: rgb(var(--text-color));
}
nav a:hover {
  cursor: pointer;
  color: rgb(var(--text-color));
}
nav a:visited {
  cursor: pointer;
  color: rgb(var(--text-color));
}

.dropdown {
  display: none;
  position: absolute;
}

/* Landing page/header */
header {
  padding: 0 20vw;
  height: 90vh;
}
header a.button {
  color: rgb(var(--text-color));
  text-decoration: none;
  margin: auto;
  padding: 20px;
  background-color: rgb(var(--accent-color));
  border-radius: 20px;
  font-size: 2.1em;
}
header h1 {
  font-size: 8em;
  color: rgba(var(--accent-color), 1);
}
header h2 {
  font-size: 4em;
  color: white;
}

/* Landing page: Anker */
#anker {
  display: flex;
  text-decoration: none;
  align-items: center;
  font-size: 24px;
  color: #007BFF;
  text-decoration: none;
  justify-content: center;
  animation: bounce 2s infinite;
  bottom: 20px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}


main {
  min-height: 91vh;
  padding: 0 18vw;
}

/* The quotes */
section.quote figure {
  float: right;
}
section.quote figure img {
  max-width: 150px;
}
section.quote figure figcaption {
  max-width: 150px;
  font-size: 0.8em;
}
section.quote figure figcaption a, section.quote figure figcaption a:hover {
  text-decoration: none;
  color: rgb(var(--accent-color));
}
section.quote div h3 {
  font-size: 1.5em;
  margin-top: 50px;
  margin-left: 10px;
  margin-bottom: 0px;
  font-weight: 400;
}
section.quote div h4, section.quote div audio {
  padding: 0 3.5px;
}
section.quote div div.subheading {
  padding: 0 5px;
  margin-left: 20px;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(var(--text-color), 0.1);
}
th, td {
  border: 1px solid black;
  padding: 8px;
  text-align: left;
}

/* Footer */
footer {
  justify-content: center;
  color: rgb(var(--text-color));
}

/* HowTo page */
ol li {
  font-size: 1em;
}

div.video_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 450px;
}
video {
  max-width: 100%;
  height: auto;
}
