body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f4f8;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}
.container {
    max-width: 600px;
}
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5em;
}
p {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    color: #34495e;
}
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    p {
        font-size: 1.25rem;
    }
}
#enable-notifications {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 20px;
}
#enable-notifications:hover {
    background-color: #2980b9;
}