* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

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

h1 {
    color: #000000;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: normal;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 2rem 0;
}

.link-button {
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    padding: 15px;
    border: 1px solid #000000;
    font-size: 16px;
    transition: background-color 0.2s;
}

.link-button:hover {
    background-color: #000000;
    color: #ffffff;
}
