@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lexend+Deca:wght@300;400;500;600;700&display=swap');

*{
    font-family: 'Lexend Deca', 'Inter';
    background: hsl(233, 47%, 7%);
    margin: 0 auto;
    color: white;
}

.container{
    width: 75vw;
    height: 46vh;
    margin-top: 250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: hsl(244, 38%, 16%);
}

img{
    margin: 0%;
}

.title h1{
    text-align: left;
    font-size: 40px;
    padding: 0px  130px ;
    background-color: hsl(244, 38%, 16%);
}

.sub-title h2{
    text-align: left;
    font-size: 15px;
    font-weight: lighter;
    padding: 30px  130px ;
    background-color: hsl(244, 38%, 16%);
}

.numbers{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0px 76px;
    background-color: hsl(244, 38%, 16%);
}

.numbers h4{
    font-size: 25px;
    background-color: hsl(244, 38%, 16%);
    
}

.numbers h5{
    font-size: 10px;
    font-family: 'Inter';
    font-weight: 400;
    color: hsla(0, 0%, 100%, 0.6);
    background-color: hsl(244, 38%, 16%);
}

@media screen and (max-width: 1680px) {
    .container{
        width: 85vw;;
    }
}

@media screen and (max-width: 1280px) {
    .container{
        width: 95vw;;
    }
}

@media screen and (max-width: 1080px) {
    .container{
        width: 99vw;
        display: inline-block;
    }

    .images{
        max-width: 200px;
    }
}

