* {
box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  border: 8px solid #2E5133;
  text-align: center;
  font-family: "VT323";
  font-weight: 100;
  font-size: 15px;
  font-style: normal;
  background-color: #4A7C59;
  background-image: url('https://wallpaperaccess.com/full/171177.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px #000000;

}

.links-section ul {
  list-style-position: inside;
  margin: 0;
  padding: 0;
  text-align: center;
  ;
}

.links-section ul li {
  margin: 0.3rem 0;
  line-height: 1.5;
  text-align: center;
  ;
}

.links-section ul li a {
  text-decoration: none;
  color: #FFCC00;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.links-section ul li a:hover {
  color: #FFFFFF;
  text-shadow: 1px 1px 4px #000000;
}

.articulos-list ul {
  list-style-position: inside;
  margin: 0;
  padding: 0;
  text-align: center;
}

.articulos-list ul li {
  margin: 0.3rem 0;
  line-height: 1.5;
  text-align: center;
}

.articulos-list ul li a {
  text-decoration: none;
  color: #FFCC00;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.articulos-list ul li a:hover {
  color: #FFFFFF;
  text-shadow: 1px 1px 4px #000000;
}

aside {padding: 1rem;
  margin: 1rem auto;
  max-width: 90%;
}

aside p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0.5rem 0;
  color: #333;
}

aside ul {
  list-style-position: inside;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

aside ul li {
  list-style: disc;
  text-align: left;
  margin: 0.5rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
color: #e6d815;
text-decoration: none;
transition: all 0.3s linear;
}

a:hover {
color: #c26416;
text-shadow: 2px 2px 0px #000000
;
}

hr {
margin: 2rem auto;
width: 80%;
border: 2px dashed #462303;
}

img {
display: block;
margin: 1rem auto;
border: 4px solid #2E5133;
border-radius: 4px;
max-width: 100%;
}

  p,
  li {
    text-align: center;
  font-style: normal;
    font-size: 1rem;
  }
  
  .menu {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border: 4px solid #2E5133;
    background-color: #3C8D3E;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .menu ul {
    margin: 0;
    padding: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    background-color: #6AAA64;
  }
  
  .menu ul li {
    list-style: none;
    padding: 0.5rem 1rem;
    color: #FFFFFF;
    font-weight: bold;
    background-color: #3C8D3E;
    border: 2px solid #2E5133;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
  }
  
  .menu ul li:hover {
    background-color: #FFCC00;
    transform: scale(1.05);
  }
  ul, ol {
    list-style-position: inside;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  
  li {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  li::marker {
    font-size: 1rem;
    text-align: center;
  }

  .styled-table {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: collapse;
    font-family: "VT323";
    font-size: 14px;
    text-align: left;
    background-color: #05801a;
    border: 2px solid #44512e;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  
  .styled-table thead tr {
    background-color: #6AAA64;
    color: #ffffff;
    text-align: center;
  }
  
  .styled-table th,
  .styled-table td {
    padding: 12px 15px;
    border: 1px solid #012b08;
  }
  
  .styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
  }
  
  .styled-table tbody tr:nth-of-type(even) {
    background-color: #034203;
  }
  
  .styled-table tbody tr:hover {
    background-color: #045730;
  }

  #searchResults {
    display: block !important;
  }
  
  @media (max-width: 768px) {
    .navbar-toggler {
      font-size: 1.5rem;
      padding: 0.5rem 1rem;
    }
  
    .form-control {
      font-size: 0.9rem;
      padding: 0.5rem;
    }
  
    .btn-outline-success {
      font-size: 0.9rem;
      padding: 0.5rem;
    }
  }
  
  @font-face {
    font-family: "Minecraftia";
    src: url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
  }