body {
  margin: 0;
  width: 100%;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: linear-gradient(
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0.3)
    ),
    url(./background.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.content {
  width: 90%;
  max-width: 1024px;
  color: #333;
  text-align: center;
}

h1,
h2 {
  font-family: "Playfair Display";
  font-weight: 400;
}

h1 {
  text-transform: uppercase;
  font-size: 3.8em;
  letter-spacing: 5px;
  margin: 0 0 1em 0;
}

h2 {
  font-size: 1.8em;
  font-style: italic;
}

.shop {
  display: inline-block;
  padding: 15px 30px;
  background: #b6e3e9;
  color: #333;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Open Sans";
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
}

.shop:hover {
  background: #333;
  color: #b6e3e9;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 12px;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 10px;
  }

  h1 {
    letter-spacing: 3px;
    margin: 0 0 2em 0;
  }
}
