html,
body {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  height: 100dvh;
  padding: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #00332B;

  font-family: "Plus Jakarta Sans", serif;
  font-size: 1.4rem;
  color: #fff;
}

.container {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;

  border: 1px solid #786B57;
  border-radius: 5px;
  text-align: center;
}

.content {
  padding: 30px;
}

.brand {
  margin-bottom: 60px;
}

h1 {
  max-width: 510px;
  margin-bottom: 20px;

  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 300;
}

h1 span {
  font-weight: 700;
  color: #786B57;
}

.link {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  color: #E7EFB8;
  line-height: 1;
  text-decoration: none;
}

.link:last-of-type {
  margin-bottom: 40px;
}

.link svg {
  align-self: center;
}

.instagram svg {
  margin-top: 4px;
}


p {
  color: #F1EACF;
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }

  h1 {
    font-size: 2rem;
  }
}

@media screen and (max-height: 620px) {
  .brand {
    max-width: 300px;
  }
  body {
    height: auto;
  }
}