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

@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: hsl(233, 47%, 7%);
    color: #FFF;

    font-family: 'Inter';
    font-size: 15px;
    text-align: center;

    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.container{
    display: flex;
    justify-content: center;
    padding: 0px 24px;
}

.card {
    margin-top: 80px;
    height: 90%;
    width: 88%;
    border-radius: 10px 10px 10px 10px;
    background: hsl(244, 38%, 16%);
}

img {
    border-radius: 10px 10px 0px 0px;
    width: 100%;
    mix-blend-mode: soft-light;
}

.description{
    margin: 35px 20px 0px ;

    font-size: 12px;
    line-height: 27px;
}

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

.description h1 {
    margin-bottom: 10px;
}

.description p {
    padding: 8px 20px 0px;
    line-height: 25px;
    color: hsla(0, 0%, 100%, 0.75);
}

.datacontainer{
    display: flex;
    flex-direction: column;
    justify-content: space-around;

    height: 230px;
}

.data1 h3{
    margin-top: 8px;
    font-size: 1.5em;
}
.data2 h3{
    font-size: 1.5em;
}
.data3 h3{
    font-size: 1.5em;
}

.data1 p{
    letter-spacing: 1px;
    margin-top: 10px;
    font-size: 0.7em;
    text-transform: uppercase;
    color: hsla(0, 0%, 100%, 0.75);
}
.data2 p{
    letter-spacing: 1px;
    margin-top: 10px;
    font-size: 0.7em;
    text-transform: uppercase;
    color: hsla(0, 0%, 100%, 0.75);
}
.data3 p{
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 18px;
    font-size: 0.7em;
    text-transform: uppercase;
    color: hsla(0, 0%, 100%, 0.75);
}

@media (min-width: 1440px){
    .card {
        width: 88%;
        display: flex;
        flex-direction: row-reverse;
    }
    img {
        border-radius: 0px 10px 10px 0px;
        width: 60%;
    }

    .description{
        margin: 75px 60px 0px;
        line-height: 50px;
        

        font-size: 22px;
        text-align: left;
    }

    .description p {
        margin-top: 30px;
        padding: 0;
        font-size: 18px;
        line-height: 30px;
    }

    .datacontainer{
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 400px;
        height: 200px;
        margin-left: 30px;
        padding: 0;
        text-align: left;
    }
    .data1 h3{
        margin: 0;
        padding: 0;
    }
    
    .data2 h3{
        margin: 0;
        padding: 0;
    }
    
    .data3 h3{
        margin: 0px;
        padding: 0;
    }
    .data1 p{
        margin: 10px 0px 0px 0px;
        padding: 0;
    }
    
    .data2 p{
        margin: 10px 0px 0px 0px;
        padding: 0;
    }
    
    .data3 p{
        margin: 10px 0px 0px 0px;
        padding: 0;
    }
}