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

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: #222;
    background: #f5f5f5;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    text-align: center;
}

.landing-message img {
    max-width: 800px;
    width: 100%;
    margin-bottom: 25px;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

p {
    font-size: 15px;
    color: #666;
}

@media (max-width: 480px) {
    h1 {
        font-size: 22px;
    }

    p {
        font-size: 14px;
    }

    .landing-message img {
        max-width: 375px;
    }
}