/* style.css */

body {
    font-family: system-ui, sans-serif;
    background: #f7f8fa;
    color: #333;
    margin: 0;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    width: 100%;
}

h1, h2, h3 {
    margin-top: 0;
    color: #222;
}

a {
    color: #007BFF;
    word-break: break-all;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

@media (max-width: 600px) {
    .container {
        padding: 1.5rem;
    }

    button {
        width: 100%;
    }
}
