body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  background-image: url("Images/Wallpaper.png");
  color: white;
}

h1, h2, .top-menu a {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
}

.container {
  width: 1100px;
  margin: 40px auto;
  background: #1a1a1a;
  border: 2px solid #111111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 1); 
}

header {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background: url("Images/banner.png") center/cover no-repeat;
  padding: 5px 10px;
  border-bottom: 2px solid red;
}

footer {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.logo-area {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 110px;
}

.top-menu {
  margin-top: 15px;
}

.top-menu a {
  color: white;
  text-decoration: none;
  margin-right: 20px;
  padding: 8px 12px;
  background: red;
}

.top-menu a:hover {
  background: #222;
}

.main {
  display: flex;
}

.sidebar {
  width: 250px;
  background: #7a0000;
  padding: 15px;
}

.sidebar h3 {
  border-bottom: 1px solid white;
  padding-bottom: 5px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin: 8px 0;
}

.sidebar a {
  color: white;
  text-decoration: none;
}

.sidebar .active a {
  background: red;
  display: block;
  padding: 5px;
}

.content {
  flex: 1;
  padding: 25px;
  background: url('Images/cuadritos.png');
  background-repeat: repeat;
}


footer {
  text-align: center;
  padding: 15px;
  background: #111111;
  border-top: 2px solid red;
}

#enlaces-footer a {
    color: #FF0000; 
    text-decoration: none;
    margin: 0 10px;
    padding-bottom: 2px;

    border-bottom: 1px dotted transparent; 
    transition: border-bottom 0.2s;
}

#enlaces-footer a:hover {
    color: #FF0000;
    border-bottom: 1px dotted #FF0000; 
}

.caja-contenido {
    background-color: #353535; 
    border: 1px solid #828282; 
    border-radius: 5px; 
    padding: 15px; 
    margin-bottom: 15px; 
}
