/* CSS File for Structured Overview of Downloadable Files */

/* Container for the file list */
.file-list {
  margin: 20px;
}

/* Styling for each file item */
.file-item {
  margin-bottom: 10px;
}

/* Link styles */
.file-link {
  display: block;
  color: #333;
  text-decoration: none;
}

/* Hover effect on links */
.file-link:hover {
  text-decoration: underline;
}

/* Main headline */
h1 {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  font-family: "Arial", sans-serif;
}

/* Sub-headline */
h2 {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  margin-bottom: 15px;
  font-family: "Arial", sans-serif;
}

/* Section headline */
h3 {
  font-size: 20px;
  font-weight: bold;
  color: #777;
  margin-bottom: 10px;
  font-family: "Arial", sans-serif;
}

/* Sub-section headline */
h4 {
  font-size: 18px;
  font-weight: bold;
  color: #888;
  margin-bottom: 10px;
  font-family: "Arial", sans-serif;
}

/* All links */
a {
  font-family: "Courier New", Courier, monospace;
  text-decoration: none;
}

/* Hover effect on links */
a:hover {
  text-decoration: underline;
}