@font-face {
  font-family: "Poppins";
  src: url(../../assets/fonts/Poppins-Medium.ttf);
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

body {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 17px;
}

header {
  position: relative;
  z-index: 1;
  height: 100vh;
  text-align: center;
}

header .overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-color: #ac57573b;
}

header video {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header h1 {
  color: #f1f1f1;
  font-weight: 800;
  font-size: 3rem;
  padding-top: 40vh;
  text-shadow: 2px 2px 0px #131d53;
  text-transform: uppercase;
}

.services-link {
  text-decoration: none;
  display: inline-block;
  min-width: 125px;
  color: #eee;
  background-color: #333;
  border-radius: 20px;
  padding: 10px 20px;
}

main {
  padding: 0 14px;
}
main section {
  padding: 75px 0;
  max-width: 900px;
  margin: 0 auto;
}
section p {
  line-height: 1.5;
  font-size: 1rem;
}
