* {
    margin: 0;
    padding: 0;
  }
  html {
    background: url(images/background.jpg) no-repeat bottom center;
    background-size: cover;
    min-height: 100vh;
  }
  body {
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    padding-top: 30px;
    box-sizing: border-box;
    font-weight: normal;
    position: relative;
    padding-bottom: 30px;
  }
  img {
    max-width: 100%;
  }
  a{
    text-decoration: none;
  }
  .container-fluid {
    padding-inline: 10px;
  }
  .logo {
    margin-bottom: 15px;
  }
  .mobile-image {
    position: absolute;
    bottom: 25px;
    left: 50%;
    z-index: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 40%;
    pointer-events: none;
    text-align: center;
  }
  .content {
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex; 
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
  }
  .content-inner {
    max-width: 500px;
    padding-inline: 10px;
  }
  .content h1,
  .content-inner p{
    color: #fff;
    font-size: 32px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px #676767;
  }
  .content-inner p{
    font-size: 15px;
    line-height: 1.5;
    width: 85%;
    margin-inline: auto;
    margin-bottom: 15px;
  }
  .footer {
    background: #0B0D17;
    color: #fff;
    font-size: 12px;
    padding: 10px;
    height: 30px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    box-sizing: border-box;
  }
  .footer .container-fluid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .right-foot a {
    color: rgba(255, 255, 255, 0.6);
}
  .right-foot a:hover{
    text-decoration: underline;
    color: rgb(59 133 255);
  }
  @media (max-width: 1024px) {
    body {
      background-size: 100% auto;
    }
    .logo img {
      width: 110px;
    }
    .mobile-image {
      width: 100%;
    }
    .content h1 {
      font-size: 24px;
      margin-bottom: 15px;
    }
    .bottom-grp img {
      width: 140px;
    }
    .footer .container-fluid {
      text-align: center;
    }
  }
  @media (max-width: 767px) {
    body {
      padding-bottom: 50px;
      background-position: bottom 50px left;
    }
    .footer {
      height: 50px;
    }
    .left-foot,
    .right-foot {
      width: 100%;
    }
    .mobile-image{
      bottom: 50px;
    }
  }