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

body{
    display: grid;
    height: 100dvh;
    background: lch(95.87% 1.77 19.16);
    align-items: center;
    place-items: center;
    padding: 20px;
}

.header{
    place-items: center;
}

.p-1{
    color: hsl(212, 6%, 44%);
    font-size: 30px;
}

.header h1{
    color: hsl(234, 12%, 34%);
}

.p-2{
    color: hsl(212, 6%, 44%);
    font-size: 15px;
    margin-top: 0.5rem;
    width: 26rem;
    text-align: center;
}

.bottom{
    display: flex;
    justify-content: space-between;
    padding: 10px;
    gap: 1rem;
    margin: 2rem;
}

.card-1{
    background:white;
    width: 20rem;
    height: 13rem;
    padding: 20px;
    border-radius: 10px;
    place-self: center;
}

.card-1 h1{
    color:  hsl(234, 12%, 34%);
}

.card-1 p{
    color:hsl(212, 6%, 44%) ;
    font-size: 15px;
    margin-top: 0.5rem;
    line-height: 1.5rem;
}

.image{
    justify-self: right;
}

.card-1-image{
    margin-top: 2rem;
    
}

.card-2{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}



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

    .bottom{
        display: flex;
        flex-direction: column;
    }

    .p-2{
    width: 15rem;
    text-align: left;
    }

}