:root {
  --color-primary: #ff0000;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  height: 100vh;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0) 100%
    ),
    url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

main {
  max-width: 340px;
  height: 100%;
  margin: -6rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact-content {
  background: white;
  border-radius: 8px;
  box-shadow: rgba(0 0 0 / 10%) 0 0 10px;
  padding: 1rem;
  text-align: center;
}
.contact-content p {
  margin-bottom: 1.4em;
}
.contact-content a {
  display: block;
  margin: 1rem;
}
.contact-content .mail::before {
  display: inline-block;
  content: "";
  background: url(../img/envelope.svg);
  width: 16px;
  height: 16px;
  margin: 0 0.6em -0.2em 0;
}
.contact-content .tel::before {
  display: inline-block;
  content: "";
  background: url(../img/telephone.svg);
  width: 16px;
  height: 16px;
  margin: 0 0.6em -0.2em 0;
}
.intro-text {
  color: white;
  text-align: center;
  text-shadow: #000 0 0 10px;
  margin-bottom: 2rem;
}
.intro-text h3 {
  font-size: 32px;
  letter-spacing: 1.3px;
  line-height: 1.4;
}
.intro-text p {
  font-size: 18px;
}
header {
  background-color: #fff;
  padding: 1rem;
}

h3 {
  text-transform: uppercase;
  letter-spacing: 0.9;
}
