html, body {
  height: 100%;
  width: 100%;
  margin: 0;
}

body {
  font-family: 'Tauri', Helvetica, Arial, sans-serif;
  color: white;
}
body .landing {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
body .landing video {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  object-fit: cover;
}
body .landing .dim {
  height: 100%;
  width: 100%;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: black;
}
body .landing .text {
  position: relative;
  top: calc(50% - 2em);
  text-align: left;
}
body .services {
  padding: 1rem 0 0.5rem 0;
  background-color: #8E24AA;
}
body .services .service .serviceName:hover {
  color: black;
  cursor: pointer;
}
body .services .service .icon {
  color: #4CAF50;
}
body .testimonials {
  background-color: #222;
}
body .contact {
  width: 100%;
  background-color: #343434;
}
body .contact form {
  height: 100%;
  width: 100%;
}
body .contact form label {
  padding-left: 2px;
}
body .contact form input[type="text"] {
  border: 2px solid black;
  background-color: white;
  height: 2em;
  margin-bottom: 1em;
  outline: none;
  color: black;
}
body .contact form .message {
  border: 2px solid black;
  background-color: white;
  width: 100%;
  height: 5em;
  margin-bottom: 1em;
  outline: none;
  color: black;
}
