*{
    padding: 0px;
    margin: 0x;
    border: 0px;
    outline: 0px;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
}
body{
    min-height: 100svh;
    max-width: 100svw;
    font-family: "Inter", sans-serif;
}

header{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 500px;
    flex-wrap: wrap;
}

header ul{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.first{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.down{ 
    width: 40%;
}

.firstp{
    text-transform: uppercase;
    color: rgb(111, 17, 127);
    margin-bottom: -30px;
}

.secondp{
    color: rgb(84, 3, 103);
    font-size: 50px;
}

.thirdp{
    color: rgb(93, 93, 93);
}

.firstb{
    background-color: rgb(255, 46, 146);

    border: 1px solid rgb(255, 46, 146);
    border-radius: 20px;
    padding: 10px 15px;
    margin: 20px 0px 0px 30px;

}

.playb{
    background-color: rgb(239, 61, 255);

    border: 1px solid rgb(239, 61, 255);
    border-radius: 130px;
    padding: 10px;
    margin-left: 10px;
    color: white;
    width: 40px;
    height: 40px;
}

header ul li a{
    color: #551A8B;
}

.second img{
    width: 40%;
}

.second{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.features{
    width: 40%;
}

.mainp{
    font-size: 50px;
    color: rgb(84, 3, 103);
}

.firsttwo{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.secondtwo{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.feature1, .feature2, .feature3 , .feature4{
    width: 300px;
}

.feature{
    font-size: 20px;
}

.description{
    font-size: 15px;
    color: rgb(111, 110, 110);
    margin-top: -10px;
}

.features i{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-image: linear-gradient(#a95ef7, #f57be4);
    color: white;
    font-size: 20px;
    padding-top: 15px;
}

.third{
    height: 60%;
    

}
.help{
    font-size: 40px;
    text-align: center;
    color: rgb(84, 3, 103);
}

.cards{
   display: flex;
   justify-content: center;
   gap: 20px;
   flex-wrap: wrap;

}

.card{
   border: 1px solid white;
   border: 5px;
   box-shadow: 0px 0px 5px grey;
   text-align: center;
   padding: 25px 10px;
   margin: 5px;
   width: 250px;
   height: 300px;
}

.t{
    font-size: 20px;
    color: rgb(84, 3, 103);
}

.d{
    font-size: 13px;
    color: rgb(129, 129, 129);
    text-align: center;
}

.icon{
    border: 1px solid #f57be4;
    background-image: linear-gradient(#a95ef7, #f57be4);
    width: 60px;
    height: 60px;
    color: white;
    margin: 0px auto;
    padding: 10px;
    border-radius: 50%;

}


/* Media Query */

@media (max-width:432px) {
     header ul{
        display: flex;
        flex-direction: column;
        text-align: center;
     }

     .first .firstp{
        font-size: 13px;
     } 
     .first .secondp{
        font-size: 35px;
     }

     .down .b{
        display: flex;
        justify-content: center;
        align-items: center;
     }

}

@media(max-width: 900px){
    .second{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .mainp{
        font-size: 30px;
    }
    .second img{
        width: 400px;
        margin-top: 100px;
    }
    .features{
       width: 60%;
    }
    .feature1, .feature2, .feature3 , .feature4{
    width: 200px;
    margin: 25px;
    }
}




