*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: poppins, sans-serif;
    background-color: rgba(183, 183, 237, 0.42);
    background-image: url(img/pattern-background-desktop.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.container{
    width: 400px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
}
.img{
    width: 100%;
    margin-bottom: 20px;
}
.content{
    padding: 20px;
}
.content h1{
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}
.content p{
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}
.plan{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color:  rgba(183, 183, 237, 0.187);
    border-radius: 10px;
    height: 80px;
    margin-top: 10px;
    margin-bottom: 30px;
    border: none;

}
.plan-content{
    display: flex;
    align-items: center;
    padding: 20px;
}
.plan-content img{
    width: 50px;
    height: 50px;
    margin-right: 20px;
}
.plan-details{
    text-align: start;
    font-size: 1em;
    padding-top: 20px;
}
.plan-details h2{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}
.plan-details p{
    font-size: 16px;
    color: #555;
}
.change-plan{
    color: blue;
    text-decoration: underline;
    margin-right: 20px;
    border: none;
    font-size: 16px;
    background: none;
}
.change-plan:hover{
    cursor: pointer;
    color: blueviolet;
    text-decoration: none;
}
.button{
    margin-bottom: 20px;
}
.button .btn{
    width: 100%;
    padding: 15px;
    background-color: blue;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
}
.button .btn:hover{
    background-color: blueviolet;
    cursor: pointer;
}
.button1 .cancel{
    border: none;
    background: none;
    color:#555;
    font-size: 16px;
    font-weight: 700;
}
.button1 .cancel:hover{
    color: black;
    cursor: pointer;
}
@media (max-width: 768px){
    body{
        display: flex;
        justify-content: center;
        align-items: center;
        max-height: 100vh;
        padding-top: 100px;
        background-image: url(img/pattern-background-mobile.svg);
    }
    .container{
    width: 300px;
    }
    img{
    width: 100%;
    margin-right: 40px;
    }
    .content{
        padding: 20px;
    }
    .content h1{
        font-size: 18px;
        font-weight: 700;
    }
    .content p{
        font-size: 13px;
    }
    .plan{
    height: 60px;
    }
    .plan-content{
        padding: 10px;
    }
    .plan-content img{
        width: 30px;
        height: 30px;
        margin-right: 20px;
    }
    .plan-details h2{
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 5px;
    }
    .plan-details p{
        font-size: 12px;
    }
    .change-plan{
        margin-right: 10px;
        font-size: 13px;
    }
    .button{
        margin-bottom: 20px;
    }
    .button .btn{
        padding: 10px;
        font-size: 13px;
    }
    .button1 .cancel{
        font-size: 13px;
        font-weight: 700;
    }
}