* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  /* background: black; */
  background: linear-gradient(to bottom, #ff758c, #ff7eb3);
  color: #333;
  text-align: center;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  max-width: 450px;
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.profile-pic {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ff758c;
  margin-top: 20px;
  background: white;
}
h1 {
  font-size: 24px;
  margin: 15px 0;
  font-weight: 700;
}
p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #555;
  font-weight: 400;
}
.list {
  text-align: left;
  font-size: 14px;
  color: #555;
  padding: 10px 20px;
}
.list li {
  margin: 8px 0;
}
.btn {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}
.btn-facebook {
  background: #1877f2;
}
.btn-facebook:hover {
  background: #0e5bd3;
}
.btn-tiktok {
  background: #000;
}
.btn-tiktok:hover {
  background: #333;
}
.btn-instagram {
  background: #e4405f;
}
.btn-instagram:hover {
  background: #c1354e;
}
