body, html {
    height: 100%;
    margin: 0;
}

    a {
        text-decoration: none !important;
        color: inherit !important;
    }

  .bgimg {
    background-image: url('background.jpg');
    height: 100%;
    background-position: center;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.8);
    background-blend-mode: multiply;
    position: relative;
    color: white;
    font-family: "Courier New", Courier, monospace;
    font-size: 25px;
  }

  .middle {
    width: 100%;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .logo-img {
    max-width: 100%;
    height: auto;
    width: 300px;
  }

  .main-title {
    margin-block-start: 0.5rem;
    margin-block-end: 0.2rem;
  }

  .sub-title {
    font-weight: normal;
    font-size: 16px;
    margin-block-start: 0;
    margin-block-end: 1.5rem;
  }
  
  hr {
    margin: auto;
    width: 10%;
  }
  
  .bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
  }

  .bottomContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .bottom-title {
    font-size: 14px;
  }

  .bottom-details {
    font-size: 16px;
    text-align: center;
  }

  .bottom-line {
    height: 40px;
    background-color: #ffd11a;
    border-top: 1px solid #ffd11a;
    -webkit-box-shadow: inset #ffd11a 0 1px 0;
    -moz-box-shadow: inset #ffd11a 0 1px 0;
    box-shadow: inset #ffd11a 0 1px 0;
  }
  
@media only screen and (max-width: 991.98px) {

  p{
    margin-block-start: 0.3rem;
    margin-block-end: 0.3rem;
  }

  hr {
    width: 20%;
  }

  .middle {
    top: 40%;
  }

  .bgimg {
    font-size: 18px;
  }

  .sub-title {
    font-size: 14px;
  }

  .logo-img {
    width: 150px;
  }

  .bottom-title {
    font-size: 12px;
  }

  .bottom-details {
    font-size: 14px;
  }

}