/* Estilo global */
body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f9fc;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

/* Contenedor principal 
.container {
    text-align: center;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
}*/

/* Título */
h1 {
    font-size: 2.5em;
    color: #4f6367;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Menú */
.menu {
    margin-bottom: 20px;
}

.menu a {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    background-color: #4f6367;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s;
}

.menu a:hover {
    background-color: #87a8d0;
}

/* Imagen */
.image-container img {
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
    border-radius: 10px;
}

/* Contenedor del logo y título */
.logo-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

/* Estilo del logo */
.logo {
    width: 400px; /* Ajusta el tamaño según tu preferencia */
    max-width: 400px; /* Evita que se desborde del contenedor */
    height: auto; /* Mantiene la proporción de la imagen */
    border-radius: 10px; /* Opcional: bordes ligeramente redondeados */
    margin-bottom: 10px; /* Espacio entre la imagen y el título */
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

/* Contenedor principal */
.container {
    text-align: center;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
    overflow: hidden; /* Asegura que los elementos no sobresalgan */
}