*{
  font-family:  "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}

body{
  background: linear-gradient(135deg, #6C63FF, #B621FE);
}

.profile{
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 0 10px rgba(108, 99, 255, 0.3);

}

.title{
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.bt-link{
  display: block;
  width: 250px;
  padding: 12px 20px;
  margin: 10px auto;
  background: rgba(255, 255, 255, 0.26);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bt-link:hover{ 
  color: white;
  background-color: rgba(255, 255, 255, 0.438);
}