@import url('https://fonts.googleapis.com/css2?family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&display=swap');

.old-standard-tt-regular {
  font-family: "Old Standard TT", serif;
  font-weight: 400;
  font-style: normal;
}

.old-standard-tt-bold {
  font-family: "Old Standard TT", serif;
  font-weight: 700;
  font-style: normal;
}

.old-standard-tt-regular-italic {
  font-family: "Old Standard TT", serif;
  font-weight: 400;
  font-style: italic;
}


@import url('https://fonts.googleapis.com/css2?family=Encode+Sans+Condensed:wght@100;200;300;400;500;600;700;800;900&family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&display=swap');

.encode-sans-condensed-thin {
  font-family: "Encode Sans Condensed", serif;
  font-weight: 100;
  font-style: normal;
}

.encode-sans-condensed-extralight {
  font-family: "Encode Sans Condensed", serif;
  font-weight: 200;
  font-style: normal;
}

.encode-sans-condensed-light {
  font-family: "Encode Sans Condensed", serif;
  font-weight: 300;
  font-style: normal;
}

.encode-sans-condensed-regular {
  font-family: "Encode Sans Condensed", serif;
  font-weight: 400;
  font-style: normal;
}

.encode-sans-condensed-medium {
  font-family: "Encode Sans Condensed", serif;
  font-weight: 500;
  font-style: normal;
}

.encode-sans-condensed-semibold {
  font-family: "Encode Sans Condensed", serif;
  font-weight: 600;
  font-style: normal;
}

.encode-sans-condensed-bold {
  font-family: "Encode Sans Condensed", serif;
  font-weight: 700;
  font-style: normal;
}

.encode-sans-condensed-extrabold {
  font-family: "Encode Sans Condensed", serif;
  font-weight: 800;
  font-style: normal;
}

.encode-sans-condensed-black {
  font-family: "Encode Sans Condensed", serif;
  font-weight: 900;
  font-style: normal;
}


h1, h2, h3 {
  font-family: "Old Standard TT", sans-serif;
  color: #333; /* Color del texto */
  margin: 10px 0;
  line-height: 1.2;
}

/* Tamaños específicos para los encabezados */
h1 {
  font-size: 2.5rem;
  font-weight: 400; /* Julius Sans One no tiene variantes gruesas */
}
h2 {
  font-size: 2rem;
  font-weight: 300; /* Julius Sans One no tiene variantes gruesas */
}
h3 {
  font-size: 1.5rem;
  font-weight: 200; /* Julius Sans One no tiene variantes gruesas */
}
h4 {
  font-family: sans-serif;
  font-size: 1.25rem;
}
h5 {
  font-family: sans-serif;
  font-size: 1rem;
}

body, html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: "Encode Sans Condensed", sans-serif;
  }
  
  main {
    flex: 1;
  }
 footer {
  position: relative;
  bottom: 0;
  width: 100%;
}

  
  a {
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  /* Aumentar el tamaño de letra de la barra de navegación */
.navbar a {
  font-size: 1.5rem; /* Ajusta el tamaño según tus necesidades (1.25rem es aproximadamente 20px) */
}

.navbar-brand {
  font-size: 2rem; /* Aumenta el tamaño del texto del logo o nombre */
}

/* login.html */
.login-container {
  width: 100%;
  max-width: 400px;
  margin: 50px auto;
  padding: 20px;
  background: rgba(250, 220, 0, 0.8);
  border-radius: 8px;
  text-align: center;
}

.login-container input {
  width: 90%;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.login-container button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.login-container button:hover {
  background-color: #0056b3;
}

.card-body {
  background-color: rgba(250, 221, 0, 0.5); /* Fondo amarillo translúcido */
  border-radius: 10px;
}

.card-title {
  font-weight: bold;
  font-size: 1.5rem;
}

.card-text {
  color: #000; /* Texto negro */
}
  

