body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
    background: linear-gradient(45deg, #89f7fe, #66a6ff);
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 5%;
    background-color: #333;
    color: #888;
    text-align: center;
    padding: 0;
}

h1 {
    margin-bottom: 20px;
}

img {
    max-width: 70%;
    height: auto;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    gap: 20px;
}

.buttons button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer; /* Fijar la altura */
}

#siButton {
    background-color: green;
    color: white;
    /*border-radius: 10px;*/
    /* Asegurar que el tamaño del botón no cambie */
    width: 100px; /* Fijar el ancho */
    height: 50px;
}

#noButton {
    background-color: red;
    color: white;
    /* Asegurar que el tamaño del botón no cambie */
    width: 100px; /* Fijar el ancho */
    height: 50px;
}