/* MOBILE-FIRST */
/* Desktop styles below */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  margin: 0;
  color: black;
  font-family: "Montserrat", sans-serif;
  background-color: #ffffff;
  border-top: 8px solid #909044;
  min-height: 100vh;
  width: 100%;
}

a {
  text-decoration: none;
  color: #8b587d;
}

#logo {
  width: 100%;
  margin: 24px 0;
  max-width: 600px;
}

.main {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
  border-radius: 24px;
  max-width: 600px;
}

.divider-line {
  height: 8px;
  width: 160px;
  align-self: flex-end;
  background-color: #dec978;
  margin: 16px 0px 48px 0;
}

.intro {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

#intro-text-logo-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.intro h1 {
  padding: 20px 0;
  font-size: 2.2rem;
  text-align: center;
}

#illustration-top {
  width: calc(100% - 32px);
  margin: 16px;
  max-width: 480px;
}

#illustration-bottom {
  width: 100%;
  margin-top: 24px;
  max-width: 600px;
  max-height: 612px;
}

.description {
  display: flex;
  flex-direction: column;
}

.description p {
  padding: 20px 0;
  font-size: 1.8rem;
}

.description span {
  font-weight: bold;
}

.contact-info {
  align-self: center;
}

.contact-info-line {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.contact-info p {
  padding: 10px 0;
}

.fas {
  font-size: 2rem;
  padding: 20px 20px 20px 0;
  color: #909044;
}

.contact-info a {
  font-weight: bold;
  color: #909044;
}

footer {
  height: 75px;
  padding: 10px 20px;
  font-size: 1rem;
  min-width: 100%;
  margin-top: 20px;
  position: relative;
  bottom: 0;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100%;
  align-items: center;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.footer-contact div {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.author {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.footer-contact p {
  padding-right: 10px;
}

@media (min-width: 768px) {
  html {
    font-size: 12px;
  }
}

@media (min-width: 992px) {
  html {
    font-size: 14px;
  }

  .main {
    flex-direction: column;
    width: 100%;
    padding: 32px;
    max-width: 1200px;
  }

  .intro {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  #intro-text-logo-container {
    margin-right: 32px;
  }

  #logo {
    width: 90%;
    max-width: 800px;
    margin: 48px 0;
  }

  .divider-line {
    align-self: center;
    margin: 64px 0;
  }

  #content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }

  #illustration-bottom {
    width: calc(60% - 32px);
  }

  .description p {
    padding: 16px;
  }

  .fas {
    padding: 20px;
  }
}
