/* responsive.css */

/* Mobile-first adjustments for devices with a max-width of 600px */
@media only screen and (max-width: 800px) {
  header {
    background-size: 500% 100%;
    padding: 12px;
  }

  header .title {
    flex-direction: column;
    align-items: flex-start;
  }

  header section {
    padding: 0;
    font-size: 24px;
  }

  header section h1 {
    font-size: 40px;

    margin-top: 0;
    margin-bottom: -15px;
  }

  header section h2 {
    font-size: 20px;
  }

  header section h3 {
    font-size: 18px;
    width: 0;
  }

  header img {
    width: 40px;
    padding: 5px;
    margin-right: 5px;
  }

  header li {
    font-size: 14px;
    padding-bottom: 10px;
  }

  main {
    width: 40vh;
  }

  main h2 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 435px) {
  header section h2 {
    font-size: 20px;
  }

  header section h3 {
    font-size: 12px;
    width: 0;
  }

  header img {
    width: 30px;
    padding: 5px;
    margin-right: 5px;
  }

  header li {
    font-size: 12px;
    padding-bottom: 10px;
  }
}
