html {
    font-family: "Comic Relief", system-ui;
    font-style: normal;
    background-image: url("../img/background.jpgroom.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body {
    margin: 0;
    padding: 0;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    margin-bottom: 20px;
}

header h1 {
    font-size: 48px;
    margin: 0 0 20px 0;
}

.back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff69b4;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #ff1493;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-section {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-section h2 {
    margin-top: 0;
    color: #333;
    font-size: 28px;
}

.info-section p {
    color: #555;
    line-height: 1.6;
    font-size: 18px;
}

.info-section ul {
    color: #555;
    line-height: 1.8;
    font-size: 18px;
}

.info-section li {
    margin-bottom: 8px;
}
