@charset "utf-8";

* {
  margin: 0px;
}

html {
  height: 100vh;
}

body {
  background-color: #666;
}

#container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  max-width: 1000px;
  background-image: url('/media/bgclouds.jpg');
  margin: 0 auto;
  border: 1px solid black;
  border-top: 0;
  border-bottom: 1px;
}

#content-wrapper {
  overflow: auto;
  height: 100%;
}

h1 {
  text-align: center;
  padding: 10px 0px 0px 0px;
}

#title {
  border-bottom: 1px solid white;
  background-color: #000022;
  color: #FFF;
  min-height: 139px;
}

#nav {
  margin-bottom: 20px;
}

.navigation {
  background-color: rgba(0, 0, 255, 0.5);
  list-style: none;
  font-family: "Lucida Console", monospace;
  text-transform: lowercase;
  font-size: medium;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.navigation li {
  border-left: 1px solid #FFF;
  margin: auto 0;
}

.navigation .first {
  border: 0;
}

.navigation a {
  text-decoration: none;
  display: block;
  padding: 3px 10px;
  color: #FFF;
  vertical-align: middle;
}

.navigation a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.content-bubble {
  background-color: rgba(255, 255, 255, 0.3);
  font-family: "DejaVu Sans", FreeSans, Helvetica, sans-serif;
  height: fit-content;
  margin: 0 20px 20px 20px;
  padding: 10px;
  border-radius: 10px 0;
}

.content-bubble h2 {
  font-size: x-large;
  border-bottom: 1px dashed #000;
  margin-bottom: 12px;
}

.content-bubble h2 .edited {
  font-size: large;
  color: #444;
  vertical-align: 2px;
}

.content-bubble h3 {
  font-size: large;
  text-decoration: underline;
  margin: 10px 0 6px 0;
}

.content-bubble p {
  font-size: medium;
  margin-top: 5px;
}

.content-bubble p .first {
  margin-top: 0px;
}

.content-bubble a {
  color: #000;
  text-decoration: underline;
}

#footer {
  margin-top: auto;
  min-height: 1em;
  max-height: 3em;
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
  overflow: hidden;
}

#footer p {
  color: #FFF;
  text-align: center;
  font-size: small;
  vertical-align: middle;
}
