.banner {
    position: relative;
  height: 30vh;
  /* min-height: 520px;                 🔥 prevents cut-off */
  background: url("../../images/banner2.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
  margin-bottom: 20px;
}

.banner h2 {
    font-size: 40px;
}

.content {
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.content p {
    font-weight: lighter;
    text-align: justify;
    line-height: 1.6;
    padding: 0px 40px;

}