@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

body {
    background: url('https://miro.medium.com/v2/resize:fit:1400/0*6h16z3JOKtytBWRb') no-repeat center center fixed;
    background-size: cover;
    backdrop-filter: brightness(40%) blur(4px);
    color: #f0f0f0;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding: 30px;
}

h1, h2, h3 {
    color: #ffffff;
    text-shadow: 2px 2px 5px #000;
    margin-bottom: 20px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 10px 0;
    font-size: 18px;
}

button {
    background: linear-gradient(135deg, #00c0ff, #0077cc);
    color: white;
    border: none;
    padding: 12px 25px;
    margin: 10px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0,0,0,0.6);
    transition: transform 0.2s, background 0.3s;
}

button:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #0090c0, #005a99);
}

input, select, textarea {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin: 8px;
    width: 250px;
    max-width: 90%;
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(2px);
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
    transition: box-shadow 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 10px #00c0ff;
}

a {
    color: #00c0ff;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin: 10px;
    transition: transform 0.2s;
}

a:hover {
    transform: scale(1.1);
    text-decoration: underline;
}

.container {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
}
