
body {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 20px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
}

.container {
    text-align: center;
    padding: 40px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px white; }
    to { text-shadow: 0 0 25px yellow; }
}

.card {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin: auto;
    max-width: 600px;
}

ul {
    text-align: left;
}

.buttons {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 25px;
    margin: 10px;
    background: #ffcc00;
    color: black;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.1);
    background: orange;
}

.btn2 {
    background: #00ffcc;
}

input, select{
  font-size: 20px;
}
