/*
blue: #084687;
green: #9dc12b;
*/

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 15px 20px;
  color: #333;
  font-size: 1.3rem;
  font-family: "Nunito", serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #f4f4f4;
}
body.home {
  justify-content: center;
  position: relative;
}
body.home .copy-link{
  bottom: 15px;
}
body.home main {
  display: block;
  height: auto;
}
main {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
main video {
  max-height: 85vh;
}
body.home main {
  position: relative;
  top: -3%;
}
footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
img.logo {
  width: 120px;
  height: auto;
  margin-bottom: 2rem;
}
a {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #e60000;
  text-decoration: none;
}
h1, h2, h3, h4 {
  color: inherit;
  /* font-weight: 700; */
}
h1 {
  font-size: 2.8rem;
  font-weight: 700;
}
ol {
  display: inline-block;
  text-align: left;
}
small {
  font-size: .7em;
  opacity: 0.6;
}
.go-home, .go-next {
  display: flex;
  align-items: center;
}
.go-home small {
  display: block;
  opacity: 1;
  margin-left: 28px;
}
.btn {
  line-height: 1.1;
  padding: .35rem .6rem;
  font-size: 0.9rem;
  border-radius: 6px;
}
.btn-outline-primary {
  color: #333;
  border-color: #8e8e8d;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #e60000;
  border-color: #e60000;
}
.copy-link {
  display: block;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%)
}

@media (max-width: 900px) {
  img.logo {
      width: 80px;
  }
  footer {
      align-items: flex-end;
  }
  .copy-link {
      position: static;
      transform: none;
      flex-shrink: 0;
      padding: 1px 10px 0 10px;
  }
}


@media (max-width: 576px) {
  .go-home {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
  }
  .go-home a {
      order: 2;
  }
  .go-home small {
      order: 1;
      margin-left: 0;
      margin-bottom: 15px;
  }
}

