* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 400px;
  text-align: center;
  padding: 20px;
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

h1 {
  font-size: 22px;
  margin-bottom: 25px;
  color: #111;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background-color: #fff;
  color: #111;
  text-decoration: none;

  padding: 14px;
  margin-bottom: 15px;
  border-radius: 30px;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}
