@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: hsl(0, 0%, 100%);
    color: hsl(234, 12%, 34%);
    margin: 100px 0;
}

.text1{
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    text-align: center;
}

.text2{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-align: center;
}

.text3{
    font-family: 'Poppins', sans-serif;
    margin: 10px;
    text-align: center;
}

.con{
    display: flex;
    width: 80%;
    margin: 0 auto;
}

.left, .center, .right{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card1{
    border-top: 7px solid hsl(180, 62%, 55%);
}

.card2{
    border-top: 7px solid hsl(0, 78%, 62%);
}

.card3{
    border-top: 7px solid hsl(34, 97%, 64%);
}

.card4{
    border-top: 7px solid hsl(212, 86%, 64%);
}

.card1, .card2, .card3, .card4{
    box-shadow: 0px 0px 10px hsl(212, 6%, 44%);
    width: 90%;
    height: 250px;
    margin: 40px;
    border-radius: 5px;
    position: relative;
}

.text4{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin: 20px 0 0 20px ;
}

.text5{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0 0 0 20px;
}

.img{
    position: absolute;
    right: 20px;
    bottom: 50px;
}

@media (max-width: 1440px) {
    body{
        margin: 50px o;
    }
  .con {
    flex-direction: column;
    align-items: center;
  }

  .card1, .card2, .card3, .card4 {
    width: 100%;
    margin: 20px 0;
  }

  .center {
    flex-direction: column;
  }
}
