html {
  height: 100%;
  width: 100%;
}

/* set theme colours and mark as !important to override bootstrap css */
h1 {
  color: #091990
}

.accent {
  background-color: #091990 !important;
  color: white !important;
}

.btn-primary {
  background-color: #091990 !important;
  color: white !important;
}

/* set font, margins, and align */
* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

body {
  background-color: #EEE2DC;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.content {
  margin: 10%;
}

.center {
  text-align: center;
}

/* for links */
a:visited a:active {
  color: #000 !important;
}

a:hover {
  color: #1f2fad !important;
}

a {
  color: #000 !important;
  text-decoration: none;
}

/* for lists and specific aligns */
li {
  text-align: left;
}

.left1 {
  text-align: left;
}

/* for video sizing */
video {
  width: 50% !important;
  height: auto !important;
}