body {
    font-family: 'Verdana', sans-serif;
    background-color: #1b1b2f;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
}

.container {
    width: 85%;
    max-width: 900px;
    margin: 40px auto;
    padding: 10px;
}

header.main-info {
    text-align: center;
    margin-bottom: 30px;
}

header.main-info h1 {
    font-size: 3em;
    color: #800000; 
    letter-spacing: 2px;
    text-shadow: 2px 2px 6px #000;
    margin-bottom: 10px;
}

header.main-info p {
    font-size: 1.1em;
    margin: 5px 0;
}

header.main-info a {
    color: #ffd700; 
    text-decoration: none;
}

header.main-info a:hover {
    text-decoration: underline;
}

.profile-photo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.profile-photo img {
    width: 220px;
    border-radius: 50%;
    border: 4px solid #800000;
    box-shadow: 0 0 20px rgba(128, 0, 0, 0.7);
}

section {
    background-color: #2a2a40;
    padding: 20px 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    border-left: 5px solid #800000;
    transition: transform 0.3s, box-shadow 0.3s;
}

section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}

section h2 {
    color: #ffd700;
    margin-top: 0;
    text-shadow: 1px 1px 3px #000;
}

ul {
    list-style-type: square;
    margin-left: 20px;
    line-height: 1.8;
}

p {
    margin: 10px 0;
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #bbb;
    margin-bottom: 40px;
}
