/* Reset básico para asegurar consistencia en diferentes navegadores */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo básico para el cuerpo */
body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #000;
    text-align: center;
    padding: 0;
    margin: 0;
}

/* Contenedor principal */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #33beff;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}



.logo {
    max-width: 50%;
    height: auto;
    margin-bottom: 20px; /* Espacio debajo de la imagen */

/* Estilo para el contenido */
.content {
    max-width: 600px;
}

h1 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    margin-bottom: 15px;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Estilo para el pie de página */
footer {
    margin-top: 20px;
    font-size: 0.9em;
    color: #7f8c8d;
}