body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
}

.container {
  width: 80%;
  margin: 20px auto;
}

header {
  text-align: center;
  margin-bottom: 20px;
}

.bio {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.bio-text {
  flex: 1 1 60%; /* Adjust flex-basis as needed */
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.8); /* Transparent background with dark overlay */
  border-radius: 20px;
  margin-bottom: 20px;
  box-sizing: border-box; /* Ensure padding is included in max-width calculation */
  text-align: left; /* Align text to the left */
  position: relative; /* Ensure relative positioning for absolute elements */
}

.bio-image {
  flex: 1 1 30%; /* Adjust flex-basis as needed */
  margin-left: 20px; /* Space between text and image */
  text-align: center; /* Center image horizontally */
}

.bio-image img {
  max-width: 100%; /* Ensure image stays within container */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.edge-box {
  background-color: rgba(255, 255, 255, 0.1); /* Transparent background color */
  padding: 20px;
  border-radius: 20px;
  position: relative;
  z-index: 1; /* Ensure text is above background */
}

.edge-box-image {
  background-color: #000;
  padding: 20px;
  border-radius: 20px;
  clip-path: polygon(0 0, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
  text-align: center; /* Center the content horizontally */
}

.bio-text h2,
.bio-text h3 {
  color: #fff;
  margin-bottom: 10px;
}

.bio-text p {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bio-text ul {
  list-style-type: none;
  padding: 0;
}

.bio-text ul li {
  margin-bottom: 10px;
}

a {
  color: #fff;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}