.homepage {
  color: rgb(245, 245, 245);
  display: flex;
  font-family: sans-serif;
  min-height: 100vh;

  .content {
    display: flex;
    flex-direction: column;
    margin: auto;
    justify-content: center;
    align-items: center;
    line-height: 125%;

    h1 {
      font-size: 48px;
      color: #b6c7f5;
      padding: 8px;
      font-weight: 600;
    }

    .section {
      background-color: #202020;
      border-radius: 8px;
      width: 520px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      margin: 32px 0 0;

      p {
        margin: 0 auto 8px;
      }

      p:last-child {
        margin: 0 auto 0;
      }

      &.header {
        margin: 32px 0 24px;
        width: 400px;
      }
    }

    .app-section-container {
      width: 560px;

      .app-section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin: 32px 0 0;

        .left {
          background-color: #202020;
          padding: 24px;
          border-radius: 8px;
          width: 164px;
          display: flex;
          justify-content: center;
          margin: auto 0;
        }

        .right {
          background-color: #202020;
          padding: 24px;
          border-radius: 8px;
          width: 280px;
          text-align: center;
          line-height: 150%;
          margin: auto 0;
        }
      }
    }

    * {
      margin: auto;
    }

    a {
      font-weight: 600;
      color: #b6c7f5;
      text-underline-offset: 2px;
    }

    img {
      margin: 48px 0;
      height: 360px;
    }
  }
}
