body{
    background-color: #300344;
    color: white;
}
.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
.container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.w-50{
    width: 50%;
}
.img-fluid{
    width: 100%;
}
.download-btn{
    margin-top: 40px;
}
.download-btn a:last-child{
    margin-left: 20px;
}
.bg-logo{
    position: absolute;
    width: 50%;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    opacity: 0.05;
}
.openApp{
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    width: 50%;
}
.link{
    text-decoration: none;
    background-color: #f7d504;
    color: black;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 0.67rem;
    display: inline-block;
    font-weight: bold;
}
@media only screen and (max-width: 767px){
  .container{
      flex-direction: column;
  }
    .w-50, .w-50 img{
      width: 100%;
  }
  .download-btn{
      text-align: center;
  }
  .download-btn a img{
      width: 40%;
  }
  .bg-logo{
      width: 100%;
  }
  .openApp{
    width: 90%;
  }
}