body {
    font-family: Arial, sans-serif;
    background-color: #ffe6f2;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

h1 {
    color: #ff69b4;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 20px 0;
}

p {
    font-size: 1.2em;
}

.links {
    margin-top: 40px;
    margin-bottom: 20px;
}

.links a {
    text-decoration: none;
    color: white;
    background-color: #ff69b4;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 0 10px;
    transition: background-color 0.3s;
}

.links a:hover {
    background-color: #ff1493;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #666;
}

@media (max-width: 600px) {
    .links a {
        display: block;
        margin: 10px 0;
    }
}