
body
{
  background-color: black;
}

h1
{
  color:  white;
  text-align: center;
  font-family: 'Arimo', sans-serif;
}

.infobar {
  display: flex;              /* puts children in a row */
  justify-content: center;    /* centers them horizontally */
  align-items: center;        /* centers them vertically */
  font-size: 30px;
  padding: 5px 0;            /* vertical padding */
  background-color: orange;
}

.infobar a {
  color: white;
  text-decoration: underline;
  margin: 0 200px;             /* horizontal spacing between links */
}

.videomanager video
{
  width: 100%;
  height: 100%;
  background-size: cover;

}

