html {
  --shadow: 3px 3px 24px rgba(0, 0, 0, .6);
  --text-light: #ffffff;
  --primary-font: 'Libre Baskerville';
  height: 100vh;
  background:
    linear-gradient(65deg,
      rgba(122, 40, 40, 0.6),
      rgba(43, 51, 87, 0.6),
      rgba(119, 39, 39, 0.4)),
    url('salon-optimized.jpg') center/cover no-repeat;
}

* {
  padding: 0;
  margin: 0;
}

body {
  color: var(--text-light);
  font-family: var(--primary-font);
  text-shadow: var(--shadow);

}

@media (max-width: 768px) {
  html {
    height: auto;
  }
}

.wrapper {
  --bg-size: 110%;
  display: flex;
  flex-direction: column;
  /* height: 100vh; */
}

header {
  display: flex;
  justify-content: space-between;
}

header>div {
  padding: 50px;
}

header h1 {
  font-family: 'Allura';
  font-size: 4em;
  line-height: 1em;
  text-shadow: 3px 3px rgb(170, 107, 107);
  transform: rotate(-1.3deg);
}

#contact {
  display: flex;
  flex-direction: column;
  text-align: right;
  font-size: 1em;
}

#contact svg {
  margin-left: 5px;
  fill: white;
  padding: 0 5px;
  max-width: 25px;
  height: auto;
}

#phone {
  margin-bottom: 15px;
}

#phone a,
#address a {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  color: var(--text-light);
}

#phone div,
#address div {
  flex: 1;
}

.main {
  display: flex;
  flex-direction: column;
  flex-grow: 2;
  /* letter-spacing: .5px; */
}

.about {
  padding: 30px 55px 0px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: top;
  font-size: 1.8em;
}

.about span {
  display: block;
  font-size: 1.5em;
}

.about p {
  text-align: center;
  max-width: 700px;
  margin-bottom: 1.2em;
}

.about svg {
  color: rgba(255, 255, 255, 0.4);
}

/* @media (max-width:880px) {
  header {
      text-align: center;
  }

} */

@media (max-width: 730px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  header h1 {
    font-size: 3em;
    margin-top: 30px;
  }

  header>div {
    padding: 20px;
  }

  .about {
    padding: 15px 55px 0px;
    font-size: 1.4em;
  }

  /* Test Contact */
  #contact {
    text-align: center;
  }

  #contact>div {
    display: flex;
    justify-content: center;
  }

  #contact a {
    color: rgb(156, 95, 106);
    background: white;
    padding: 4px 12px;
    border-radius: 4px;
    text-shadow: var(--shadow);
  }

  #contact svg {
    fill: rgb(156, 95, 106);
  }
}

@media (max-width: 320px) {
  header h1 {
    line-height: 1.1em;
  }

  .about {
    padding: 15px 35px 0px;
    font-size: 1.1em;
  }
}