/* Glass Theme Styles */

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #e0e0e0, #c8d7e5);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px;
    max-width: 600px;
    text-align: center;
}

h1 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
}

p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}
