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

body {
    height: 100vh;
    background: radial-gradient(ellipse at center bottom, #1e1b4b 10%, #312e81 40%, #4c1d95 70%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow: hidden;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 2rem;
}

.title {
    font-size: 4rem;
    font-weight: bold;
    color: white;
    text-align: center;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
}