body{
    display: flex;
    justify-content: center;
    background-color: black;

}
.all{
    position: relative;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius:5px ;
    padding-top: 7px;
}
.list {

    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}
.list li{
    margin: 1%;
    display: flex;
    width: 80%;
    padding: 10px;
    border-radius: 20px;

    flex-direction: row;


}
.profile{
    border-radius: 50%;
    overflow: hidden;
    width: 8%;
    height: 8%;
    margin-right: 1%;
    min-width: 25px;
    max-height: 25px;
}
.content{

    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: space-between;
    width: 91%;

}
.back-top{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    position: fixed;
    border-radius: 50%;
    background-color: aqua;
    right:calc(50% - 190px);
    bottom: 20px;
    transition: bottom 1s;

    z-index: 5;
}

.back-top-img{
    width: 20px;
    height: 20px;

}
.insert{
    width: 50vw;
    max-width: 50vw;
    height: 50vh;
    max-height: 50vh;
    position: fixed;
    top: 20vh;
    left: 25vw;
    z-index: 50000;
}
.modal{
    display: none;
    position: fixed;
    top:-20px;
    width: 200%;
    height: 300%;
    background-color: rgba(100,100,100,0.4);
    z-index: 10000;



}




