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

body {
    background-color: #0a0a0a;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

main {
    text-align: center;
    padding: 2rem;
}

.logo {
    width: 600px;
    max-width: 50%;
    height: auto;
    margin-bottom: 2rem;
}

footer {
    position: fixed;
    bottom: 2rem;
    width: 100%;
    text-align: center;
}

footer a {
    color: #808080;
    text-decoration: none;
    font-size: 1rem;
}

footer a:hover {
    color: #a0a0a0;
}
