body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 700px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: #fcfcfc;
}

a {
    text-decoration: none;
}

.reflections a:visited {
    color: blue;
}
* {
    box-sizing: border-box;
}

.reflections {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, sans-serif;
    color: blue;
    background-color: #fcfcfc;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

@media (min-width: 600px) {
    .reflections {
        flex-direction: row;
        justify-content: space-evenly;
    }
}

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

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #eee;
    margin-bottom: 20px;
}

h1 {
    margin: 0;
    font-size: 1.8rem;
}

p {
    margin: 10px 0;
    text-align: center;
}

.links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.links li {
    margin: 0;
}

.links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: transform 0.2s, color 0.2s;
}

.links a:hover {
    color: #0066cc;
    transform: translateY(-3px);
}

.links img {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    filter: grayscale(20%);
}

.links a:hover img {
    filter: grayscale(0%);
}

footer {
    margin-top: 60px;
    font-size: 0.8rem;
    text-align: center;
    color: #888;
}