/* Main Section */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    background-color: #141414;
    text-align: center;
}

.my-photo {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    object-position: 50% 10%;
}

/* About Me Section */
.about-me {
    background-color: #333;
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.about-me h2 {
    margin-bottom: 20px;
}

.about-me p {
    line-height: 1.6;
    font-size: 1.1em;
    color: #e5e5e5;
}