* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    height: 100vh;
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h1 {
    font-weight: 600;
    font-size: 1.5rem;
    /* slightly smaller */
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

p {
    margin-top: 0.4rem;
    font-weight: 400;
    color: #ccc;
    font-size: 0.95rem;
    /* smaller, subtle */
}

footer {
    position: absolute;
    bottom: 1rem;
    font-size: 0.75rem;
    color: #555;
}

/* 📱 Responsive text sizes */
@media (max-width: 1024px) {
    h1 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.8rem;
    }

    footer {
        font-size: 0.7rem;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 1rem;
    }

    p {
        font-size: 0.65rem;
    }

    footer {
        font-size: 0.7rem;
    }
}