@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

.banner {
  display: flex;
  flex-wrap: wrap;
  background: #FCF4F2 url(../home-banner-doodle.png) no-repeat;
  background-position: right 100px center;
  background-size: 250px;
  height: 300px;
}

.banner-content {
  max-width: 600px;
  position: relative;
  z-index: 1;
  text-align: left;
}

.banner-content h1 {
  font-family: 'Righteous';
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  color: #000000;
  margin-bottom: 20px;
}

.banner-content p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #909090;
}

/* Mobile styles */
@media (max-width: 876px) {
.banner {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 100px;
  background: #FCF4F2 url(../home-banner-doodle.png) no-repeat;
  background-position: right 100px center;
  background-size: 250px;
  height: 300px;
}

}

/* Mobile styles */
@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background-position: right 20px top 20px;
    background-size: 140px;
    min-height: auto;
  }

  .banner-content {
    text-align: left;
  }

  .banner-content h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .banner-content p {
    font-size: 14px;
    line-height: 22px;
  }
}