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

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

body {
    font-family: 'Inter', sans-serif;
    background: #0f111a;
    color: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 2rem;
}

.title {
    color: #e4c43c;
    letter-spacing: 0.1em;
    font-weight: 700;
    font-size: 3rem;
}

.subtitle {
    color: #a0a0a0;
    font-size: 1.25rem;
    margin-top: 1rem;
}
