.home-page-banner-div {
  height:100%;
  width:100%;
  /*display:flex;*/
  /*justify-content:center;*/
  /*align-content:center;*/
  position:relative;
}

.home-page-banner-div-container {
  /*height:80vh;*/
  /*min-height:600px;*/
  width:100%;
}

.home-page-banner-div-image {
  height:100%;
  width:100%;
  z-index:0;
  object-fit:cover;
}

.home-page-banner-div-text {
  z-index:5;
  /*width:70%;*/
  /*height:50%;*/
  text-align:center;
  color:white;
  color:rgb(16,90,156);
  background-color:white;
  padding:30px;
  font-size:3vmin;
  display:inline-block;
  position:absolute;
  top:10%;
  left:10%;
}

@media (max-width: 450px) {
  .home-page-banner-div-text {
    font-size:5vmin;
  }
}

