body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: #F5FFFA; /* Whiter blue shade */
    color: white;
}

header {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    text-transform: uppercase;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

nav ul li a:hover {
    color: #ffdd57;
}

/* NEW: Style for all hyperlinks */
a {
    color: #add8e6; /* Light blue */
    text-decoration: none;
}

a:visited {
    color: #add8e6; /* Keep it light blue after visit */
}

a:hover {
    color: #ffdd57;
    text-decoration: underline;
}

section {
    padding: 50px;
    max-width: 800px;
    margin: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
    display: none;
}

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

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    position: relative;
    width: 100%;
    margin-top: 20px;
}
.about-text {
    color: black;
}
