.banner {
  border-radius: 10px;
  padding: 50px;
  margin-bottom: 30px;
}
.banner h1 {
  font-size: 45px;
  font-weight: bold;
}
.banner p {
  font-size: 20px;
  width: 75%;
}

@media screen and (max-width: 768px) {
  /* BANNER */
  .banner {
    padding: 30px;
  }
  .banner h1 {
    font-size: 25px;
  }
  .banner p {
    font-size: 17px;
    width: 100%;
  }
}
