@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #161519;
    font-family: "Poppins", sans-serif;
    color: whitesmoke;
}
section{
    padding: 100px;
}
.backbtn{
    border: 1px solid white;
    padding: 5px 50px;
}
h1{
    color: #ffca33;
    margin-bottom: 20px;
}
h3{
    margin: 40px 0px 10px 0px;
    color: #ffca33;
}
@media only screen and (max-width: 769px) {
    section{
        padding: 50px;
    }
}
@media only screen and (max-width: 426px) {
    section{
        padding: 50px 20px;
    }
}
/* deleteacc.html page*/
.imdandtext{
    display: flex;
    gap: 100px;
    align-items: center;
    justify-content: center;
}
.imdandtext img{
    width: 300px;
}
.deletepagedesc .firstpara{
    margin: 0px 0px 30px 0px;
}
.liststyle{
    margin-left: 20px;
}
.secondpara{
    margin: 30px 0px;
}
.deletetitle{
    color: #ffca33;
    margin-bottom: 10px;
}
@media only screen and (max-width: 950px) {
    .imdandtext{
        display: flex;
        gap: 50px;
    }
    .imdandtext img{
        width: 250px;
    }
}
@media only screen and (max-width: 769px) {
    .imdandtext{
        display: block;
        gap: 0px;
    }
    .phoneimg{
        text-align: center;
    }
    .deletepagedesc{
        margin-top: 30px;
    }
}