* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #2c2c2c;
  color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  background-color: #86c9c6;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  max-width: 400px;
  width: 90%;
    background: linear-gradient(
    90deg,
    #ffc7cd,
    #ffd7aa);
}

.profile-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

h1 {
  font-size: 2em;
  margin-bottom: 5px;
  color: #ffffff;
  text-shadow: 0px 0px 5px #966969;
}

.bio {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.footer {
  font-size: 0.7em;
  color: #8a7272;
}

.button-wrapper {
  display: inline-block;
  padding: 8px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    #ffb3ba,
    #ffdfba,
    #ffffba,
    #baffc9,
    #bae1ff
  );
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
}

.pastel-button {
  padding: 10px;
  font-family:Georgia, 'Times New Roman', Times, serif;
  font-weight: bold;
  font-size: 1em;
  color: #5a5a5a;
  background-color: white;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  box-sizing: border-box;
  width: 100%;
}

.pastel-button:hover {
  letter-spacing: 2px;
    background: linear-gradient(
    90deg,
    #ffbfc6,
    #fce0c0,
    #fcfcc3,
    #cdffd8,
    #cbe8ff
  );
  cursor: pointer;
}

.pastel-button a {
  text-decoration: none;
  color: #5a5a5a;
}