body {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
  position: relative; 
  z-index: 0; 
}

body::before {
  content: "";
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../media/xp.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.6; 
  z-index: -1; 
  pointer-events: none; 
}


header, footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 1rem 0;
}

nav {
  background-color: #444;
}

nav ul.menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav ul.menu li {
  margin: 0.5rem;
}

nav ul.menu a {
  text-decoration: underline;
  color: white;
  padding: 0.5rem 1rem;
  display: inline-block;
}

nav ul.menu a.active {
  font-weight: bold;
  background-color: #666;
  border-radius: 5px;
}

main {
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.intro {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.box {
  flex: 2;
  background-color: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

aside {
  flex: 1;
}

.thumbnail {
  max-width: 100%;
  height: auto;
  border: 2px solid #ccc;
  border-radius: 8px;
}

.statistics table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.statistics th, .statistics td {
  border: 1px solid #ccc;
  padding: 0.5rem;
  text-align: left;
}

.statistics caption {
  caption-side: top;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.carousel-section img,
.video-section video {
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.links-section ul {
  list-style-type: square;
  padding-left: 1.5rem;
}
a:visited{
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

footer {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .intro {
    flex-direction: column;
  }
}

