body {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    text-align: center;
    background-color: #ffe6e6;
    overflow: hidden;
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    z-index: 10;
}
h1 {
    color: #ff4d4d;
    animation: heartbeat 1.5s infinite;
}
@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.buttons {
    margin-top: 20px;
}
button {
    font-size: 20px;
    padding: 10px 20px;
    margin: 10px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
}
.gato1 {
    height: 20vh;
}
.yes {
    position: relative;
    height: 50px;
    width: 100px;
    padding-left: 30px;
    padding-right: 0px;
    box-shadow: 1px 1px 1px rgb(107, 102, 102);
    background-image: url("/img/botones/fondo-lazo-esquina.jpg")!important;
    background-size: cover;
    font-family: 'Dancing Script';
    color: black;
}
.yes:hover{
    box-shadow: 3px 3px 3px rgb(243, 116, 215);
}

.no {
    background-color: black;
    font-family: 'New Rocker', bold;
    color: white;
    box-shadow: 1px 1px 1px rgb(107, 102, 102);
    background-image: url("/img/botones/telaraña.png");
    background-size: cover;
    position: relative;
    box-shadow: 1px 1px 1px rgb(107, 102, 102);
}

.translucent{
    background-color: transparent;
    color: transparent;
    position: relative;
    pointer-events: none;
}


.message {
    display: none;
    margin-top: 20px;
    font-size: 24px;
    color: #ff4d4d;
}
.heart {
    position: absolute;
    width: 100px;
    height: 100px;

    background-image: url('./img/corazones/corazon-1.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    animation: float 5s infinite ease-in-out;
    opacity: 0.7;
}
@keyframes float {
    0% { transform: translateY(110vh) scale(1); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(2); opacity: 0; }
}
