@font-face {
  font-family: "Nunito";
  src: url('../fonts/Nunito-Regular.woff2') format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Nunito";
  src: url('../fonts/Nunito-Bold.woff2') format("woff2");
  font-weight: 700;
}
html {
  height: 100%;
}

body {
  background: linear-gradient(to top, #FBE7E0, #FCF0D6);
  max-width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  
  article {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Nunito";
    color: #181d18;

    section {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      > img {
        max-width: 210px;
        border-radius: 20px;
        margin-bottom: 15px;
        border: 2px solid #c9c7bf;
      }
      h1 {
        line-height: 1;
        margin: 0 0 8px;
        font-size: 28px;
      }
      p {
        line-height: 1.1;
        margin: 0 0 20px;
        font-size: 20px;
        text-align: center;
      }
      .app-icon-container {
        img {
          width: 150px;
        }
      }
    }

    footer {
      position: absolute;
      bottom: 20px;
      font-weight: bold;
      font-size: 18px;
      a {
        color: #008743;
      }
    }
  }

  
}