body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    background: linear-gradient(180deg, #1f1c2c, #928DAB);
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

select,
button {
    padding: 12px;
    margin: 10px;
    font-size: 18px;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
}

select {
    background: #282c34;
    color: white;
    cursor: pointer;
}

button {
    background: linear-gradient(90deg, #ff416c, #ff4b2b);
    color: white;
    font-weight: 600;
    cursor: pointer;
}

button:hover {
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
    transform: scale(1.05);
}

img {
    margin-top: 20px;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: fadeIn 1s ease-in-out;
}

#description {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 300;
    max-width: 80%;
    text-align: center;
    opacity: 0.8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}