/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* Body para Index */
.index-body {
  background-color: #0b1c2d; 
  color: #f5f3ee;           
  font-family: monospace;
  margin: 0;
  padding: 20px;

  background-image: url('https://miauchetos.carrd.co/assets/images/image34.png?v=145badfd');
  background-position: center top; 
  background-repeat: repeat;
  background-size: 50px 50px; /* tu tamaño de estrella */
}

#star-background {
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-repeat: repeat;
  background-size: 100px 100px; /* tamaño de cada estrella */
  z-index: -1; /* atrás de todo */
  
}

.header-image {
  width: 100%;
  height: 200px; /* altura tipo cover */
  background-image: url("https://miauchetos.carrd.co/assets/images/image25.jpg?v=d58837bc");
  background-size: cover;
  background-position: center;
  margin-bottom: 15px;
}
  

#main-container {
  max-width: 850px;
  margin: auto;
  padding: 15px;
  background-color: rgba(11,28,45,0.9);
}

header {
  text-align: center;
  margin-bottom: 20px;
}

/*textos*/

h1 {
  color: #7a6ee6; 
  text-align: center;
  font-size: 2.5em;
  font-family: "Helvetica Punk", Helvetica, sans-serif;
}

h2, h3 {
  color: #7a6ee6;
  font-family:  "Helvetica Punk", Helvetica, sans-serif;
  margin-top: 20px;
  margin-bottom: 10px;
}

.subtitle {
  color: #f2c94c;
}

#layout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

#sidebar {
  width: 250px;
  padding: 15px;
  background-color: rgba(11,28,45,0.9);
}



#rightbar {
  width: 250px;
  padding: 15px;
  background-color: rgba(11,28,45,0.9);
}

#grid{
  display: flex;
  justify-content:flex-start;
  gap:5px;
}


#content {
  flex-grow: 1;
  border: 2px solid #7a6ee6;
  padding: 20px;
  background-color: rgba(15, 32, 60, 0.95);
  box-shadow: 0 0 10px rgba(122,110,230,0.25);
}

a {
  color: #f2c94c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

hr {
  border: none;
  border-top: 1px dashed #7a6ee6;
  margin: 15px 0;
}


p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

nav ul {
  list-style-type: none;
  padding: 0;
  text-align: center;
}

nav li {
  display: block;
  margin: 10px 0;
}

nav a {
  color: #F6E27F;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

nav a:hover {
  text-decoration: underline;
}

a {
  color: #F6E27F;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
