/* src/styles.css */
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  --header-size: 50px;
  --color-background: #c9c9c9;
  --color-background-2: #c5c5c5;
  font-family: "Georgia", serif;
}
.color_rojo {
  border: 1px solid red;
}
a {
  font-style: normal;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.color_azul {
  border: 1px solid blue;
}
.main_container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
  height: var(--header-size);
  background-color: var(--color-background-2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #d4af37;
  font-size: 1.5rem;
  font-weight: bold;
  color: #4a3f35;
}
.header-title {
  font-size: 24px;
  font-weight: bold;
  color: #181818;
  cursor: pointer;
}
.header a {
  background-color: #ffffff;
  color: #4a3f35;
  text-decoration: none;
  padding: 2px 4px;
  border-radius: 5px;
  border: 1px solid #d4af37;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 5px 4px 4px rgba(0, 0, 0, 0.1);
}
.header a:hover {
  background-color: #d4af37;
  color: #ffffff;
}
.body {
  margin-top: var(--header-size);
  flex: 1;
  overflow-y: auto;
}
.navigator {
  display: flex;
  gap: 10px;
  margin-left: 10px;
}
.main-style {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  padding: 40px 20px;
  background-color: #eae6da;
  color: #2c3e50;
  font-family: "Georgia", serif;
  overflow-y: auto;
  -webkit-user-select: none;
  user-select: none;
}
.main-style h1 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #4a3f35;
  margin-bottom: 20px;
  border-bottom: 3px solid #d4af37;
  padding-bottom: 10px;
  text-align: center;
}
.main-style p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a3f35;
  max-width: 900px;
  text-align: justify;
  margin-bottom: 20px;
}
.main-style ul {
  list-style-type: disc;
  padding-left: 40px;
  margin-top: 20px;
  color: #4a3f35;
}
.main-style ul li {
  font-size: 1rem;
  margin-bottom: 10px;
}
.main-style blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #6d6d6d;
  border-left: 4px solid #d4af37;
  padding-left: 20px;
  margin: 20px 0;
}
.main-style a {
  color: #d4af37;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
.main-style a:hover {
  color: #4a3f35;
}
.main-style .cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  font-size: 1rem;
  color: #ffffff;
  background-color: #4a3f35;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #d4af37;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.main-style .cta-button:hover {
  background-color: #d4af37;
  color: #4a3f35;
}
.img-fluid {
  margin: 15px;
  max-width: 40%;
  height: auto;
  border: 1px solid white;
  box-shadow: 3px 3px 20px rgba(214, 214, 214, 0.2);
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
