body{
    background-color: #ffc5d3; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: cursive;
}
.Flork{
    width: 200px;
    display: block;
    margin: 0 auto
}
.botones{
    display: flex;
    gap: 10px;
}
.botones button{
    font-family: cursive;
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    border-radius:10px;
    color: white;
}
.si{
    background-color: #7FFF00;
}
.no{
    background-color: red;
    transition: transform 0.2s;
}
h1{
    color:#ff69b4;
}
.corazon{
    position: fixed;
    font-size: 30px;
    animation:flotar 3s linear;
    top: 80vh;
}
@keyframes flotar {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-300px);
        opacity: 0;
    }
}