/* BOX MODEL
    Modelo de caixa
    toda caixa tem 
    largura, altura espaçamentos, preenchimentos
    bordas, cor, fundo, maneirra que é vista pelo html,
    alinhamento, espaçamento
*/
#page-home {
  display: flex;
  height: 120vh;
  background: url("../assets/home-background.svg") no-repeat;
  background-position: 39vw bottom;
  background-size: 700px;
}

#page-home .content {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  height: 90%;
  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: bold;
}
#page-home header a span {
  margin-right: 13px;
  background-image: url("../assets/log-in.svg");
  width: 20px;
  height: 20px;
}

#page-home main {
  max-width: 560px;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}
#page-home main h1 {
  font-size: 48px;
}
#page-home main p {
  font-size: 25px;
  line-height: 38px;
  margin-top: 24px;
}

#page-home main a {
  width: 100%;
  max-width: 360px;
  height: 72px;
  background-color: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  margin-top: 40px;
  transition: 400ms;
}
#page-home main a:hover {
  background-color: #2fb86e;
}
#page-home main a span {
  width: 72px;
  height: 72px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 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("../assets/search.svg");
  width: 20px;
  height: 20px;
}
#page-home main a strong {
  color: white;
  flex: 1;
  text-align: center;
}
