* {
  margin: 0;
  padding: 0;
}

.splash {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.splash-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.splash h1 {
  font-size: 1.6rem;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.splash h2 {
  max-width: 20rem;
  font-size: medium;
}

.splash h3 {
  max-width: 20rem;
  font-size: small;
  font-weight: normal;
  font-style: italic;
}

.splash img {
  width: 70%;
  height: 15rem;
  object-fit: cover;
}

.splash video {
  min-width: 70%;
  max-width: 70%;
  max-height: 20rem;
}

.splash iframe {
  width: 100%;
  height: 18rem;
  max-width: 70%;
  border: none;
  object-fit: contain;
}

.get-quote {
  background-color: #cc0000;
  color: white;
  margin: 0;
  padding: 1rem 2rem;
  font-size: larger;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.get-quote:hover {
  background-color: #b80000;
}