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

body{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    background-color: #161623;
    overflow-x: hidden;
    color: white;
}
.container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    min-height: 100vh;

}
.box{
    height: 310px;
    width: 200px;
    background-color: rgba(255, 255, 255,0.2);
    margin: 50px;
    padding: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px;
    border: solid rgb(255, 255, 255,0.1);
   backdrop-filter: blur(2px);
   box-shadow:4px 4px 8px 5px rgb(0,0, 0,0.2);
}

.container .box h3{
    margin-bottom: 15px;
    font-weight: 300;
    font-size:22px;
}
.btn{
    text-align: center;
    width: fit-content;
    padding: 6px 11px;
    background-color: white;
    color: black;
    border-radius: 26px;
    cursor: pointer;
    font-weight: bolder;
    margin-top: 15px;
}

.btn:hover{
    text-decoration: underline;
    transition: 2s ;
}
.circle1::before{
    content: "";
    position: absolute;
    bottom: 60%;
    left: -7%;
    height: 400px;
    width: 400px;
    border-radius: 50%;
    z-index: -3;
    background: linear-gradient(71deg,#3cf,rgb(253, 123, 188));
}

.circle2::before{
    content: "";
    position: absolute;
    bottom: 15%;
    left: 32%;
    height:215px;
    width: 215px;
    border-radius: 50%;
    z-index: -3;
    background:linear-gradient(48deg,#3434e6,#ec6ead);

}
.circle3::before{
    content: "";
    position: absolute;
    top: 8%;
    right: 7%;
    height: 350px;
    width: 350px;
    border-radius: 50%;
    z-index: -3;
    background:linear-gradient(45deg, #a770ef, #cf8bf3,#fdb99b);
}


@media  only screen and (max-width:850px){
    .circle3::before{
        content: "";
        position: absolute;
        top: 54%;
        right: -33%;
        height: 350px;
        width: 350px;
        border-radius: 50%;
        z-index: -3;
        background:linear-gradient(45deg, #a770ef, #cf8bf3,#fdb99b);
    }




    .circle2::before{
    Content: "";
    position: absolute;
    TOP: 155%;
    left: -17%;
    height: 215px;
    width: 215px;
    border-radius: 50%;
    z-index: -3;
    background: linear-gradient(48deg,#3434e6,#ec6ead);
   }




   .circle1::before{
    content: "";
    position: absolute;
    bottom: 60%;
    left: -7%;
    height: 350px;
    width: 350px;
    border-radius: 50%;
    z-index: -3;
    background: linear-gradient(71deg,#3cf,rgb(253, 123, 188));
}





}
