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: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bio-text {
    flex: 1 1 60%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
    text-align: left;
}

.bio-image {
    flex: 1 1 30%;
    margin-left: 20px;
    text-align: center;
}

.bio-image img {
    max-width: 100%;
    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);
    padding: 20px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.edge-box-image {
    background-color: #000;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
}

.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;
}