body {
    font-family: 'Roboto', Arial, sans-serif;
    background: linear-gradient(135deg, #0078D7, #00C6FF);
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    overflow: hidden;
}

h1 {
    font-size: 2.8em;
    font-weight: 700;
    margin: 0;
}

p {
    font-size: 1.2em;
    margin: 10px 0 20px;
    line-height: 1.6;
}

.container {
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
}

footer {
    margin-top: 20px;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
}

.logo {
    width: 100px;
    margin-bottom: 20px;
}

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

    p {
        font-size: 1em;
    }

    .container {
        width: 95%;
    }
}