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

body {
    font-family: sans-serif;
    background: linear-gradient(135deg, #0d0010 0%, #1a0030 50%, #0a000f 100%);
    background-attachment: fixed;
    color: #e8e0f0;
    min-height: 100vh;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 1rem;
}

main img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
}

h1 {
    font-size: 2rem;
}

ul {
    list-style: none;
}

ul a {
    text-decoration: none;
    color: #c084fc;
    font-size: 1rem;
}

ul a:hover {
    text-decoration: underline;
    color: #e9d5ff;
}
