@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Lexend+Deca&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}
body{
    font-size: 15px;
    /* width: 1440px; */
    display: flex;
    background: hsl(233, 47%, 7%);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: white;
    align-items: center;

    /* font-family: 'Lexend Deca', sans-serif; */
    
}
.container{
    max-width: 1020px;
    margin: 0 auto;
}
.wraper{
    background: hsl(244, 38%, 16%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 15px;
    overflow: hidden;
    
}
.text-content{
    padding: 4rem;
}
.title{
    color: hsl(0, 0%, 100%);
    font-weight: 700;
    padding-bottom: 22px;

}
.span-color{
    color: violet;
}
.sub-title{
    font-size: 15px;
    color: hsla(0, 0%, 100%, 0.75);
    line-height: 1.8rem;

}
.stat-box{
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    padding-top: 60px;
}
.number{
    font-size: 25px;
    color: white;
    font-weight: 700;
    margin-bottom: 8px;
}
.text{
    color: hsla(0, 0%, 100%, 0.75);;
}
.image-component img{
    width: 100%;
    height: 100%;
    object-fit: cover;


}
.image-component{
    position: relative;


}
.image-component::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: hsla(276.9, 63.8%, 61%, 0.62);
}

@media only screen and (max-width:375px) {
    body{
        text-align: center;
    }
    .wraper{
        grid-template-columns: 1fr;
    }
}