* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.biography-container {
  background-color: #ffffff;
  padding: 2rem;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.bio-header {
  text-align: center;
  margin-bottom: 2rem;
}

.bio-header h1 {
  font-size: 2.5rem;
  color: #333;
}

.bio-header p {
  font-size: 1.2rem;
  color: #666;
  margin-top: 0.5rem;
}

.bio-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bio-photo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bio-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 600px) {
  .bio-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }

  .bio-text {
    text-align: left;
  }
}
.return-button {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
}

.return-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: #fff;
  background-color: gray;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.return-link:hover {
  background-color: #1da1f2;
}
