body {
    margin: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    background-color: #005123;
}

.texto-entrada {
    text-align: center;
    font-size: 1.2rem;
    font-family: Arial, sans-serif;
    margin-bottom: 10px;
    animation: aparecer 1s ease-out;
}

.flecha {
    width: 0;
    height: 0;
    margin: 0 auto 10px auto;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #ffffff;
    animation: mover 1s infinite ease-in-out;
}

@keyframes mover {
    0% { transform: translateY(0); }
    50% { transform: translateY(5px); }
    100% { transform: translateY(0); }
}

button {
    border: none;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    background-color: transparent;
}

img {
    width: 200px;
    height: auto;
}

#icono {
    width: 200px;
    height: auto;
    border: 2px solid #275ad9;
}

@keyframes aparecer {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

#iframe-votar {
    width: 100vw;
    height: 100vh;
    border: none;
    transform-origin: center center;
    transition: transform 0.5s ease;
}

#logo {
    width: 350px;
    height: auto;
}

#logo2 {
    width: 350px;
    height: auto;
}

#logo3 {
    width: 350px;
    height: auto;
}

#logo4 {
    width: 150px;
    height: auto;
}

