body {
  background: #fff;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 50px 20px;
}

.container {
  max-width: 400px;
  margin: 0 auto;
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

h1 {
  font-size: 20px;
  margin: 20px 0;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 2rem;
  margin-bottom: 30px;
}

.socials a {
  color: black;
  text-decoration: none;
  transition: transform 0.2s;
}

.socials a:hover {
  transform: scale(1.2);
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #2e2e2e;
  text-decoration: none;
  padding: 15px;
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.2s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background: rgba(46, 46, 46, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  color: #FEFEFE;
}

.btn-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
