/* estilos.css */

@font-face {
	font-family: "Museo 700";
	src: url('fonts/Museo700-Regular.otf');
}

body {
    font-family: "Museo 700";
}

/* Estilo para el encabezado */
header {
    background-color: #004080; /* Color azul corporativo */
	font-family: "Museo 700";
}

header img {
    max-width: 150px;
}

header h1 {
    font-size: 4rem;
}

menu {
  list-style-type: none;
  display: flex;
  padding: 0;
  margin-bottom: 0;
  gap: 1em;
}

menu li a {
    background-color: #000 !important;
    border-color: #000 !important;
}

.logout
{
    color: deeppink;
}

.bg-primary {
  background-color: #000 !important;
}

.hover-img {
	opacity: 1;
    transition: opacity 0.3s ease;
}
.hover-img:hover {
   opacity: .5;
}

.box {
    border: 1px solid #000;
    border-radius: .25rem;
    padding:3rem;
    margin-bottom: 3rem;
}

button {
    background-color: #000 !important;
    border-color: #000 !important;
}

.btn-cancel {
    background-color: deeppink;
    border-color: deeppink;
}

/* Estilo para el pie de página */
footer {
	font-family: "Museo 700";
}

footer a {
    text-decoration: none;
	/*color: #fff !important;*/
}

footer a:hover {
    text-decoration: underline;
}