body{
    margin: 0;
    font-family: inter;
}
   
h1, h2, h4,h3, p{
    color: white;
}

span{
    color: hsl(277, 64%, 61%);
}

p{
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.container{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(233, 47%, 7%);
    
}

.card{
    display: flex;
    max-width: 900px;
    background-color: hsl(244, 38%, 16%);
    border-radius: 7px;
}

.part1{
    padding: 50px;
    
}


.noIdea{
    display: flex;
    justify-content: space-between;
}

.stat{
    display: flex;
    flex-direction:column;
    justify-content: center;
}

.data{
    padding-bottom: 0px;
    margin-bottom: 0;
}

.statPara{
    font-size: 10px;
    margin-top: 0;
    padding-top: 0;
}
.image{
    width: 450px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    
}

.image-conatiner{
    position: relative;
    display: inline-block;
}

.image-container img {
    display: block;
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(79, 77, 130, 0.7);
    /* Red with transparency */
    pointer-events: none;
}

@media screen and (max-width: 900px) {

    .card{
        flex-direction: column-reverse;
        max-width: 375px;
    }
    .image{
        width: 375px;
    }

    .noIdea{
        flex-direction: column;
        justify-content:center;
        align-items: center;

    }
    .data{
        font-size: 30px;
    }

    p{
        font-size: 20px;
        text-align: center;
    }
    h1{
        text-align: center;
    }

    .statPara{
        font-size: 15px;
    }

    

}