body {
  background-color: #e8cfd1;
  font-family: 'Playfair Display', serif;
  display: flex;
  justify-content: center;
  padding: 40px;
}

.container {
  width: 800px;
  background-color: #4a2c2a;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.header {
  text-align: center;
  background-color: #f6e5e5;
  padding: 10px;
  border-radius: 10px;
  font-family: 'Dancing Script', cursive;
  font-size: 24px;
  color: #5a3b3b;
}

.card {
  display: flex;
  background-color: #fdf3f3;
  margin-top: 20px;
  padding: 20px;
  border-radius: 15px;
}

.left {
  width: 30%;
  text-align: center;
}

.profile {
  width: 150px;
  border-radius: 15px;
  border: 4px solid #d9a7a7;
}

.socials button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 8px;
  background-color: #6d3c3c;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.socials button:hover {
  background-color: #8b4f4f;
}

.right {
  width: 70%;
  padding-left: 20px;
}

.right h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 28px;
  color: #a15c5c;
}

.info {
  font-size: 14px;
  color: #7a5c5c;
}

.gallery {
  margin-top: 15px;
}

.gallery img {
  width: 120px;
  margin-right: 10px;
  border-radius: 10px;
}

.nav {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.nav button {
  padding: 10px 20px;
  background-color: #f6e5e5;
  border: none;
  border-radius: 10px;
  font-family: 'Dancing Script', cursive;
  font-size: 18px;
  cursor: pointer;
}

.nav button:hover {
  background-color: #e4c3c3;
}
