#page-home {
  height: 100vh;

  background: url('https://i.imgur.com/v6TIafo.png') no-repeat;
  background-position: 35vw bottom;
}

#page-home .content {
  width: 90%;
  height: 100%;
  max-width: 1100px;

  margin: 0 auto;

  display: flex;
  flex-direction: column;
}

#page-home header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 48px;
}

#page-home header a {
  display: flex;

  color: var(--title-color);
  font-weight: 700;
}

#page-home header a span {
  display: block;
  margin-right: 16px;
  background-image: url('https://i.imgur.com/Fsbb9N0.png');

  width: 20px;
  height: 20px;
}

#page-home main {
  max-width: 560px;

  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

#page-home main h1 {
  font-size: 54px;
}

#page-home main p {
  font-size: 24px;
  line-height: 38px;

  margin-top: 24px;
}

#page-home main a {
  height: 72px;
  width: 100%;
  max-width: 360px;

  margin-top: 40px;

  border-radius: 8px;

  background-color: var(--primary-color);

  display: flex;
  align-items: center;

  transition: 400ms;
}

#page-home main a:hover {
  background-color: #2fb86e;
}

#page-home main a span {
  width: 72px;
  height: 72px;

  border-radius: 8px 0 0 8px;

  background-color: rgba(0, 0, 0, 0.08);

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

#page-home main a span::after {
  content: "";
  background-image: url('https://i.imgur.com/2lTdOev.png');

  width: 20px;
  height: 20px;
}

#page-home main a strong {
  color: white;
  text-align: center;

  flex: 1;
}