*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'poppins',sans-serif;
}
.container{
    background-image:linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0.2)), url("https://cdn.pixabay.com/photo/2016/05/05/02/37/sunset-1373171__480.jpg");
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-box{
    background: tomato;
    text-align: center;
    padding: 40px 90px;
    color: #fff;
    position: relative;
    border-radius: 20px;

}
a{
    text-decoration: none;
    color: tomato;
}
.menu{
    width: 25px;
    position:absolute;
    left: 40px;
    top:40px;
}
.setting{
    width: 25px;
    position:absolute;
    right: 40px;
    top:40px;
    
}
.profile{
    width: 150px;
    border-radius: 50%;
    background: #fff;
    padding: 6px;
    margin-top: 40px;
}
.profile-bottom{
    background: white;
    color: #999;
    padding: 60px 0;
    margin-right: -90px;
    margin-left: -90px;
    margin-bottom: -40px;
    margin-top:-10px;
    border-radius: 18px;
}
.profile-bottom img{
    width: 15px;
    margin-top: 15px;
    cursor: pointer;
}
.profile-box button{
    background:#fff;
    color: #ff574a;
    border:none;
    outline: none;
    box-shadow: 0 5px 10px rgba(244,67,54,0.5) ;
    padding: 15px 60px;
    cursor: pointer;
    border-radius: 30px;
    margin-bottom: -50px;
    font-weight: 600;
    font-size: 15px;
}

#loading{
    background: #000 url("load_AdobeExpress.gif") no-repeat center center;
    background-size: 150px;
    height: 100vh;
    width:100%;
    position:fixed;
    z-index: 100000;
    
}
