.bg-img {
    /* The image used */
    background-image: url("../../static/img/quin_home_banner.jpg");

    /* Control the height of the image */
    min-height: 875px;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  .top-left {
    position: absolute;
    top: 8px;
    left: 16px;
  }
  .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .centered-left {
    position: absolute;
    top: 15%;
    left: 16px;
  }
  .centered-top {
    position: absolute;
    left: 50%;
  }
  .flashes {
      background-color: #f44336;
      color: white;
      padding-left: 2em;
    }
  .closebtn {
    color: white;
    font-weight: bold;
    float: right;
    font-size: 20px;
    line-height: 5px;
    cursor: pointer;
    transition: 0.0s;
  }
  .closebtn:hover {
    color: black;
  }