body{
    margin:0;
    font-family:Arial,sans-serif;
    text-align:center;
    overflow:hidden;
    background:linear-gradient(-45deg,#ff006e,#8338ec,#3a86ff,#06d6a0);
    background-size:400% 400%;
    animation:fondo 8s infinite;
}

@keyframes fondo{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

h1{
    color:white;
    text-shadow:0 0 20px yellow;
}

.panel{
    color:white;
    display:flex;
    justify-content:center;
    gap:40px;
    font-size:20px;
}

#juego{
    width:100vw;
    height:70vh;
    position:relative;
}

#estrella{
    position:absolute;
    font-size:60px;
    cursor:pointer;
    transition:0.2s;
}

#estrella:hover{
    transform:scale(1.3);
}

#resultado{
    color:white;
    font-size:30px;
    font-weight:bold;
}