html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
}

h1 {
  font-family: "Racing Sans One", cursive;
  font-size: 4.8em;
}

h2 {
  font-family: "Racing Sans One", cursive;
  font-size: 4em;
}

h3 {
  font-family: "Racing Sans One", cursive;
}

.main-header {
  position: relative;
  background: url(../img/ford-2705402_1920.jpg);
  background-size: cover;
  min-height: 31.5em;
}

.background-overlay {
  background: rgba(45, 52, 54, 0.8);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.navbar {
  box-shadow: 2px 2px 5px #000000;
  opacity: 0.9;
  flex-wrap: nowrap;
}

.navbar-brand {
  border-right: 0px solid rgba(0, 0, 0, 0.2);
}

.jumbotron {
  width: 100%;
}

iframe {
  max-width: 100%;
  height: auto;
}

.form-control:focus {
  border-color: #ee5f5b;
}

#mp-container {
  background-color: #ededed;
}

.jumbotron {
  padding: 2rem 1rem;
}

label {
  font-size: larger;
}

#logo {
  transition: transform 0.2s;
}

#logo:hover {
  transform: scale(1.2);
}

@-webkit-keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.hvr-pop {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-pop:hover, .hvr-pop:focus, .hvr-pop:active {
  -webkit-animation-name: hvr-pop;
  animation-name: hvr-pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}