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

body {
    font-family: Arial, sans-serif;
    /* Public domain NASA image: Carina Nebula (Hubble) */
    background-image: url('https://images-assets.nasa.gov/image/PIA15630/PIA15630~orig.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #fff;
}

.container {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #1a73e8;
}

p {
    font-size: 1.2em;
    margin-bottom: 10px;
    line-height: 1.5;
}

.page-views {
    font-weight: bold;
    margin-top: 20px;
    border-top: 1px solid #fff;
    padding-top: 10px;
}

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

    p {
        font-size: 1em;
    }
}
