*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container{
    width:100vw;
    height:100vh;
    background-color: #0A0C1B;
    display: flex;
    align-items: center;
    justify-content: center;
  
}
.container .left-side{
    width:300px;
    height:300px;
    background-color: #1C1938;
    padding: 20px;
    color: white;
    border-radius: 10px 0 0 10px;
}
.container .left-side .insight{
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 25px;
    margin-top: 20px;
}
.container .left-side .insight span{
    color: blueviolet;
}
.container .left-side .second-p{
    font-size: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.container .left-side .stats{
    display: flex;
}
.container .left-side .stats p span{
    font-weight: bold;
}
.container .right-side{
    width:300px;
    height: 300px;
    background-color: #512B68;
    border-radius: 0 10px 10px 0;
}
.container .right-side img{
    width:300px;
    height:300px;
    border-radius: 0 10px 10px 0;
    opacity: 0.6;
    
}
@media(max-width:400px){
    .container{
        width:100vw;
        height:100vh;
        background-color: #0A0C1B;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        padding-top: 20px;
        padding-bottom: 20px;
      
    }
    .container .left-side .insight{
        text-align: center;
        font-size: 30px;
    }
    .container .left-side{
        width:300px;
        height:500px;
        background-color: #1C1938;
        padding: 20px;
        color: white;
        border-radius: 0 0 10px 10px;
    }
    .container .left-side .second-p{
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 20px;
        text-align: center;
    }
    .container .left-side .stats p{
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 20px;
    }
    .container .left-side .stats{
        display: flex;
        flex-direction: column;
    }
    .container .right-side{
        width:300px;
        height:230px;
        background-color: #512B68;
        border-radius: 10px 10px 0 0;
    }
    .container .right-side img{
        width:300px;
        height:230px;
        border-radius: 10px 10px 0 0;
        opacity: 0.6;
        object-fit: cover;
    }

}
