body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: url('2019.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Arial', sans-serif; /* Cambiar 'Arial' por la tipografía sans serif deseada */
}

.container {
    text-align: center;
    color: #ffffff;
    padding: 0px;
    width: 100%;
    box-sizing: border-box;
}

header {
    background-color: rgba(0, 0, 70, 0.7);
    padding: 0 0;
    width: 100%;
    position: fixed;
    top: 0;
}

.content {
    margin-top: 1px; /* Espacio entre el header y el contenido */
}

.content img {
    width: 200px; /* Ajusta el ancho de la imagen según tus necesidades */
    height: auto;
    max-width: 100%; /* Asegura que la imagen no exceda el ancho del contenedor */
}

footer {
    background-color: rgba(0, 0, 70, 0.7);
    width: 100%;
    padding: 0 0;
    position: fixed;
    bottom: 0;
    text-align: center;
}
