* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0d1117;
    font-family: monospace;
    gap: 1.5rem;
}
p {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    color: #e6edf3;
    opacity: 0.85;
}
a {
    opacity: 0.5;
    transition: opacity 0.2s;
}
a:hover {
    opacity: 1;
}
img {
    width: 36px;
    height: 36px;
}
