body {
  background: #f8f6f3;
  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%;
}
.profile-logo {
  width: 250px;
  height: auto;
margin: 20px 0px;
}
h1 {
  font-size: 20px;
  margin: 20px 0;
 color: #384554;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 2rem;
  margin-bottom: 30px;
 color: #384554;
}
.socials a {
  color: black;
  text-decoration: none;
  transition: transform 0.2s;
 color: #384554;
}
.socials a:hover {
  transform: scale(1.2);
 color: #e1a623;
}
.buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
a.btn,
a.btn:link,
a.btn:visited {
  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  color: #384554;
  text-decoration: none;

  padding: 15px;
  border: 1px solid #384554;
  border-radius: 10px;
font-weight: bold;
  font-size: 1rem;
  cursor: pointer;

  transition: background 0.2s, color 0.2s, transform 0.1s;

  flex-direction: column;
  margin: 10px 0px;
}

a.btn:hover,
a.btn:focus {
  background: #e1a623;
  color: #ffffff;   /* ← FORCÉ */
}

a.btn:active {
  transform: scale(0.95);
}

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

@keyframes pop {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}