body {
    background-color: white;
    font-family: 'Kosugimaru', arial, sans-serif;
    font-size: 16px;
    margin: 0;
}

@font-face {
  font-family: "Silkscreen";
  src: url("/fonts/slkscr.ttf") format("truetype");
}

@font-face {
  font-family: "Source Mono";
  src: url("/fonts/SpaceMono-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Source Mono";
  src: url("/fonts/SpaceMono-Bold.ttf") format("truetype");
  font-weight: bold;
}

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

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

#header {
  height: 150px;
  max-width: 900px;
  background-color: blue;
  margin: 25px auto;
}

#container {
  display: flex;
  max-width: 900px;
  margin: auto;
}

#navbar ul {
  list-style-type: none;
  margin: 0px;
  padding: 10px;
  width: 150px;
  background-color: #f1f1f1;
  
}

#navbar li a {
  display: block;
  font-size: 18px;
  color: black;
  padding: 5px 5px;
  text-decoration: none;
}

#navbar li a:hover {
  background-color: #FF6912;
  color: white;
}

#buttons {
  margin: 0;
  padding: 20px;
}

ul.breadcrumb {
    margin-top: 0px;
    padding: 0px 0px;
    list-style: none;
    background-color: white;
}

ul.breadcrumb li {
    display: inline;
    font-size: 18px;
}

ul.breadcrumb li+li:before {
    padding: 8px;
    color: black;
    content: "/\00a0"
}

ul.breadcrumb li a {
    color: grey;
    text-decoration: none;
}

ul.breadcrumb li a:hover {
    color: #3F0E81;
    text-decoration: underline;
}

.bullet {
  margin-top: 5px;
  margin-bottom: 5px;
  padding-left: 15px;
}

a {
  color: #3F0E81;
  text-decoration: none;
}

a:hover {
 text-decoration: underline; 
}

main {
  margin-left: 25px;
  padding: 20px;
  width: 700px;
  border: 1px solid lightgrey;
}

h1, h2, h3 {
  font-family: 'Source Mono', 'kosugimaru', helvetica, sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: grey;
}

h4, h5 {
  font-family: 'Source Mono', 'kosugimaru', helvetica, sans-serif;
  text-decoration: underline;
  font-size: 18px;
  color: black;
  margin-top: 0;
  margin-bottom: 0;
}

hr {
 border: 1px dotted lightgrey;
}

.flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    align-items: center;
    
}

.flex-item {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 200px;
    width: 200px;
    height: 200px;
    justify-content: flex-start;
    display: flex;
}

.flex-list {
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  display: flex;
  margin-right: 25px;
}

figure {
  margin-left: 10px;
  margin-right: 10px;
}

figcaption {
    font-family: 'Source Mono', 'kosugimaru', helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin-top: 5px;
}

img {
  max-width: 100%;
  margin: 5px;
}

.video, iframe {
  width: 420px;
  height: 315px;
  margin: 0 auto;
  margin-bottom: 20px;
  background-color: #f1f1f1;
}

iframe {
 display: block;
 border-style: none;
}

.left {
  float: left;
  margin-right: 25px;
}

.right {
  float: right;
  margin-left: 25px;
}

#footer {
    margin: 20px;
    padding: 5px;
    text-align: center;
    font-family: silkscreen, arial, sans-serif;
    font-size: 10px;
    color: black;
}