/* styling for landing page */

/* phones */
@media screen and (min-width: 374px) {
  .landing-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
    padding: 20px 0;
    align-items: center;
    width: 90%;
    height: 95vh;
  }

  .landing-container-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .landing-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .landing-text-container {
    align-self: center;
    width: 100%;
  }

  .landing-header {
    font-family: "Lexend Deca", sans-serif;
    font-size: 2.1em;
    text-align: center;
    margin-top: 30px;
  }
  .landing-paragraph {
    font-family: "Share Tech", sans-serif;
    font-size: 1.4em;
    line-height: 1.5em;
    padding-bottom: 20px;
    text-align: left;
  }
}

.landing-footer {
  display: flex;
  flex-direction: row;
  justify-items: center;
  width: 100%;
}

.landing-footer img {
  margin: 0 auto;
}

.landing-human {
  width: auto;
  height: 40px;
}

.landing-mike {
  width: auto;
  height: 40px;
}

.landing-kofi {
  width: auto;
  height: 40px;
}
/* tablets */
@media screen and (min-width: 768px) {
  .landing-footer img {
    margin: 0 auto;
  }

  .landing-human {
    width: auto;
    height: 60px;
  }

  .landing-mike {
    width: auto;
    height: 60px;
  }

  .landing-kofi {
    width: auto;
    height: 60px;
  }
  .landing-header {
    font-size: 2.4em;
    text-align: center;
  }
  .landing-paragraph {
    font-size: 1.6em;
    line-height: 1.8em;
  }
}

/* desktops */
@media screen and (min-width: 992px) {
  .landing-image {
    align-self: center;
    width: 80%;
    height: auto;
    margin-bottom: 20px;
  }

  .landing-text-container {
    justify-self: center;
    width: 70%;
  }

  .landing-header {
    font-family: "Lexend Deca", sans-serif;
    font-size: 2.1em;
    text-align: center;
    margin-top: 30px;
  }
  .landing-paragraph {
    font-family: "Share Tech", sans-serif;
    font-size: 1.4em;
    line-height: 1.5em;
    padding-bottom: 20px;
    text-align: left;
  }

  .landing-footer {
    display: flex;
    flex-direction: row;
    justify-items: center;
    width: 100%;
  }

  .landing-footer img {
    margin: 0 auto;
  }

  .landing-human {
    width: auto;
    height: 60px;
  }

  .landing-mike {
    width: auto;
    height: 60px;
  }

  .landing-kofi {
    width: auto;
    height: 60px;
  }
}

/* large deskotps */
@media screen and (min-width: 1200px) {
  .landing-container {
    max-width: 1400px;
  }
  .landing-footer {
    display: flex;
    flex-direction: row;
    justify-items: center;
    width: 60%;
  }
}
