html{
  height: 100%;
  margin: 0;
  border: 0;
  padding: 0;

  font-family: Arial, Helvetica, sans-serif;
}

body { 
  min-height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  background-image: url('assets/images/baker.JPG');
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.mp4-wrapper {
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

nav {
  align-items: center;
  display: flex;
  flex-direction: row;
  position: relative;
  height: 100px;
  background-color: rgb(0, 0, 0, 0.5);
  width: 100vw;
  /* padding: 40px; */
}

nav > ul {
  display: flex;
  flex-direction: row;
  position: absolute;
  right: 40px;
}

nav li {
  list-style: none;
  margin: 10px;
}

nav li a {
  color: #fff;
  text-decoration: none;
  height: 20px;
  width: 30px;
}

.footer {
  display: flex; 
  flex-direction: row-reverse;
  background-color: rgb(0, 0, 0, 0.5);
  width: 100vw;
  height: 70px;
}

.footer > div {
  margin: 10px;
  color:  #fff;
  height: 20px;
  padding: 10px;
}

.main-body {
  flex: 1;
  padding: 10px;
  display: flex;
  justify-content: space-evenly;
  text-align: center;
}

.heading {
  font-size: 50px;
  color: #fff;
  font-variant-caps: small-caps;
  padding: 0 40px;
}
.heading > a {
  text-decoration: none;
  color: #fff;
}
.bold {
  font-weight: bold;
}

.images-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.images-wrapper img {
  margin: 10px;
}