body {
    background-color:bisque; 
}

.navbar {
    min-height: 50px; /* Puedes ajustar este valor según necesites */
    padding: 5px 10px;
}

/* Reducir el tamaño de la fuente del navbar */
.navbar-link {
    font-size: 14px; /* Ajusta el tamaño de la fuente */
    padding: 5px 10px;
}

/* Reducir el tamaño del logo */
.navbar-item svg {
    width: 200px; /* Ajusta el tamaño según necesites */
    height: auto;
}

/* Opcional: Reducir el padding del navbar-item que contiene el logo */
.navbar-item {
    padding: 5px 10px;
}

/* Centrar el h1 y hacer la letra más grande */
h1 {
    text-align: center;
    font-size: 3rem; /* Ajusta el tamaño de la fuente */
    font-weight: bold;
    margin-bottom: 20px;
}

/* Contenedor para centrar la imagen */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ajustar el tamaño de la imagen */
.image img {
    width: 400px; /* Ajusta el tamaño a lo que necesites */
    height: auto;
    display: block;
    border-radius: 10px; /* Bordes redondeados opcionales */
}
