a{
    color: aliceblue;
}
body{
    height: 100vh;
    width: 100vw;
    margin: 0px;
}
.main{
    height: 100%;
    width: 100%;
    display: flex;
    /* overflow: hidden; */
}
.left-div{
height: 100%;
    width: 45%;
    background-color:gray;
    background-image: url("left.jpg");
    background-size: cover;
    display: flex;
    justify-content: center;
    /* padding-top: 5%; */
}
.left-inner-div{
    height: auto;
        width: 90%;
        height: auto;
        background-color:transparent;
        background-image: url("bd.png");
        background-size: contain;
        background-repeat: no-repeat;
        margin: 5%;
        min-height: 400px;
    }
.right-div{
    height: 100%;
    width: 55%;
    background-color:#0c0c0c;
    background-image: url("right.jpg");
    background-size:contain;
    background-repeat: no-repeat;
    color: whitesmoke;
    /* text-align:start; */
    justify-content: start;
    /* padding-top: 5%; */
    display:flex;
    flex-flow: column;
    align-items: center;
    }

    .right-inner-top-div{
        margin: 5%; 
        text-align: center;
        font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
    }

    .right-inner-bottom-div{
        margin: 5%; 
        padding-top: 20%;
        text-align: center;
        font-size:28px;
        font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
    }

    @media (max-width: 800px) {
        .main {
          flex-direction: column;
        }
        .left-div{
            width: 100%;
            justify-content: center;
        }
        .right-div{
            width: 100%;
        }
    
      }