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

body {
    min-height: 100vh;
    background-color: #000;
    color: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.home-main {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem 5rem;
}

.home-logo {
    display: block;
    height: auto;
}

.home-footer {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 10;
    background: transparent;
    padding: 1rem 1.5rem;
}

.home-footer p {
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #6b7280;
}

@media (min-width: 640px) {
    .home-footer p {
        font-size: 0.875rem;
    }
}
