/* Reset some default styles */
body, h1, p, button {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: linear-gradient(to bottom right, #1a73e8, #009688);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    max-width: 500px;
    width: 90%;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

header h1 span {
    color: #ffeb3b;
    font-weight: bold;
}

main p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

button {
    background: #ffeb3b;
    border: none;
    color: #333;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

button:hover {
    background: #ffc107;
    transform: scale(1.05);
}

footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #e0e0e0;
}
