/* Logo en el encabezado */
.logo {
    width: 100px; /* Ajusta el tamaño del logo */
    height: auto;
    display: block;
    margin: 0 auto 10px; /* Centra el logo y añade un margen inferior */
}

/* Resto del CSS sigue igual */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

header {
    background-color: #2980b9;
    color: white;
    padding: 20px;
    text-align: center;
    width: 100%;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

.app {
    background-color: white;
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

.button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #2980b9;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #1f618d;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: auto;
    width: 100%;
}

/* Estilo para enlaces en el footer */
footer a {
    color: white; /* Cambia el color de los enlaces en el footer a blanco */
}

footer a:hover {
    color: #ddd; /* Color de los enlaces al pasar el cursor */
}