*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  height:100vh;
  background:url("images/bg-1.jpg") no-repeat center/cover;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* CONTAINER */
.profile-container{
  backdrop-filter: blur(10px);
  width:100%;
  height:100%;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* CARD */
.profile-card{
  background:rgba(0,0,0,0.7);
  padding:40px;
  border-radius:15px;
  text-align:center;
  color:white;
  width:300px;
}

/* AVATAR */
.avatar{
  width:80px;
  height:80px;
  border-radius:50%;
  background:white;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:0 auto 20px;
}

.avatar i{
  color:black;
  font-size:30px;
}

/* TEXT */
.profile-card h2{
  margin-bottom:10px;
}

.profile-card p{
  opacity:0.7;
  margin-bottom:20px;
}

/* BUTTON */
button{
  padding:10px 20px;
  border:none;
  border-radius:20px;
  cursor:pointer;
  background:white;
  color:black;
  font-weight:bold;
}
.back-btn{
  position:absolute;
  top:20px;
  left:20px;
  font-size:24px;
  color:white;
  cursor:pointer;
  padding:8px 12px;
  border-radius:50%;
  background:rgba(255,255,255,0.1);
  transition:0.3s;
}

/* hover */
.back-btn:hover{
  background:white;
  color:black;
}