body {
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #111;
    color: white;
}

.container {
    text-align: center;
    padding: 2rem;
    border: 1px solid #333;
    border-radius: 8px;
}

button {
    background-color: #f38020;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #d96d10;
}
