/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

.wrapper{
  float: left;
  }

.mainCont{
    float: left;
    margin-left: 90%;
  }

.imgCont{
  margin-right: auto;
  margin-left: auto;
  }
  
  
  .banner{
     background: url("https://i.pinimg.com/736x/55/d4/3a/55d43aecb1f13dc7fe3a9d9c2fe26d2a.jpg") center center;
    height: 233px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
     --y-position: 35%; /* default is centered. modify this if you want to move your banner image up or down. */
    background-position: center var(--y-position);
    border-bottom: 3px solid #073c87;
}

.banner::before{
  content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    z-index: -1;
}

.textbox {
    width: 500px;
    border: 10px solid SkyBlue;
    background-color: LightYellow;
    margin: 30px auto;
    padding: 15px;
}

.p {
    color: SkyBlue;
    font-size: 1em:
}