video {
  /** Simulating background-size: cover */
  object-fit: cover;
  height: 100%;
  width: 100%;

  position: absolute;
  top: 0;
  left: 0;
}
.video-wrapper {
  /* Telling our absolute positioned video to 
    be relative to this element */
  position: relative;

  width: 100vw;
  height: 60vh;

  /* Will not allow the video to overflow the 
    container */
  overflow: hidden;

  /* Centering the container's content vertically 
    and horizontally */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}
p {
  font-family: "Merriweather", serif;
}

.navbar-nav {
  font-family: "Raleway", sans-serif;
}

.counter-item {
  border: 0.5px solid greenyellow;
  border-radius: 4px;
  box-shadow: 0 0 36px 0 hsla(134, 100%, 94%, 0.4);
  -webkit-box-shadow: 0 0 hsla(134, 100%, 94%, 0.4);
  -moz-box-shadow: 0;
  margin: 10px;
  padding: 12px;
}
