/* static/styles.css */
body {
    background-color: #f0f8ff;
    font-family: 'Arial', sans-serif;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Cambia la dirección del flex a columna */
    height: 100vh;
    margin: 0;
}

h1 {
    text-align: center;
    color: #4682b4;
}

img {
    width: 150px; /* Ajusta el tamaño del logo según tus necesidades */
    margin-bottom: 20px; /* Espacio entre el logo y el texto */
}
