    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            background-image: url("escarapela.jpg") ;
            background-size: 100%;
        }

        .container {
            position: relative; /* Necesario para posicionar la imagen dentro */
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            max-width: 500px;
            width: 100%;
            transition: all 0.3s ease;
            overflow: hidden; /* Opcional si quieres recortar la imagen */
        }

        .imagen-superpuesta {
            position: absolute;
            top: -20px; /* Ajusta según lo que necesites */
            left: 50%;
            transform: translateX(-50%);
            width: 100%; /* Tamaño de la imagen */
            height: auto;
            z-index: 1;
        }


        h1 {
            color: #ff4081;
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .btn {
            background: linear-gradient(to right, #ff4081, #ff6b6b);
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 1.2rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 64, 129, 0.4);
            font-weight: bold;
            letter-spacing: 1px;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(255, 64, 129, 0.6);
        }

        .btn:active {
            transform: translateY(1px);
        }

        .voted-message {
            margin-top: 30px;
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .voted-image {
            width: 200px;
            height: 200px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .voted-image::after {
            content: "✓";
            font-size: 5rem;
            color: white;
            font-weight: bold;
        }

        .voted-text {
            color: #4caf50;
            font-size: 1.5rem;
            font-weight: bold;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .confetti {
            position: fixed;
            width: 10px;
            height: 10px;
            background-color: #f00;
            opacity: 0;
            animation: confetti-fall 3s linear forwards;
        }

        @keyframes confetti-fall {
            0% {
                transform: translateY(-100px) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(100vh) rotate(360deg);
                opacity: 0;
            }
        }

        @media (max-width: 600px) {
            h1 {
                font-size: 1.8rem;
            }
            
            .container {
                padding: 30px 20px;
            }
        }

        .raindrop {
            position: fixed;
            top: 0;
            border-radius: 40%;
            opacity: 0.8;
            animation: rainFall 6s linear infinite;
        }

        @keyframes rainFall {
            0% {
                transform: translateY(0);
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(100vh);
                opacity: 0;
            }
        }