@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 1rem;
    text-align: center;
    box-sizing: border-box;
}

.container {
    max-width: 600px;
    padding: 2.5rem;
    border-radius: 12px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

h1 {
    color: #6699CC;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

code {
    background-color: #e7e7e7;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-family: monospace;
}

button {
    background-color: #E67300;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1.5rem;
}

button:hover {
    background-color: #cc6600;
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}
