.prize{
    background-color: rgb(240, 245, 250);
    background-blend-mode: soft-light;
    width: 100%;
    height: auto;
}
.pContainer{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 40px;
}
.pTitle{
    font-size: 50px;
    padding: 80px 80px 0px 80px;
    font-weight: 700;
    color: crimson;
    position: relative;
} 
.pTitle:before{
    content: "";
    position: absolute;
    background-color:black;
    height: 2px;
    width: 20%;
    padding-left: 80px;
    bottom: -5px;
}
.pSubTitle{
    font-size: 40px;
    font-weight: 600;
    padding: 20px 80px 0px 180px;
    color: blueviolet;
    margin-bottom: 40px;
}
.pSubTitle span{
    font-size: 25px;
    padding-right: 10px;
}
.st,.nd,.rd{
    width: 30%;
    height: 350px;
    background-color: #434271;
    border: none;
    border-radius: 25px;
    box-shadow: 0px 20px 20px rgb(121, 98, 205);
    margin-bottom: 30px;
}
.st:hover,.nd:hover,.rd:hover{
    margin-top: 20px;
}
.st h2,.nd h2,.rd h2{
    text-align: center;
    font-size: 40px;
    padding: 40px 0px;
    color:orangered;
}
.st h3,.nd h3,.rd h3{
    text-align: center;
    font-size: 25px;
    padding: 20px 0px;
    color: white;
}

@media screen and (max-width: 900px)  {
    .st h2,.nd h2,.rd h2{
        font-size: 30px;
    }
    .st h3,.nd h3,.rd h3{
        font-size: 25px;
    }
}
@media screen and (max-width: 750px)  {
    .st h2,.nd h2,.rd h2{
        font-size: 25px;
    }
    .st h3,.nd h3,.rd h3{
        font-size: 20px;
    }
}
@media screen and (max-width: 600px)  {
    .pSubTitle{
        font-size: 40px;
        padding: 20px 60px 0px 80px;
    }
    .st,.nd,.rd{
        width: 100%;
        height: 350px;
    }
    .st h2,.nd h2,.rd h2{
        font-size: 45px;
    }
    .st h3,.nd h3,.rd h3{
        font-size: 30px;
    }
}
@media screen and (max-width: 450px)  {
    .pTitle{
        font-size: 35px;
    }
    .pSubTitle{
        font-size: 30px;
        padding: 20px 80px 0px 80px;
    }
    .st,.nd,.rd{
        height: 280px;
    }
    .st h2,.nd h2,.rd h2{
        font-size: 35px;
    }
    .st h3,.nd h3,.rd h3{
        font-size: 25px;
    }
    
}
@media screen and (max-width: 360px)  {
    .pTitle{
        font-size: 30px;
    }
    .pSubTitle{
        font-size: 25px;
    }
    .st,.nd,.rd{
        height: 250px;
    }
    .st h2,.nd h2,.rd h2{
        font-size: 30px;
    }
    .st h3,.nd h3,.rd h3{
        font-size: 20px;
    }
}

 
