body {
  font-family: Arial, sans-serif;
  background-color: white;
  color: #1a1a1a;
  text-align: center;
  padding: 20px;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.header-logos {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.header-logos img {
  height: 60px;
}

.two-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.two-columns .section {
  flex: 1 1 48%;
  min-width: 300px;
}

.heading-with-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.heading-with-logo h2 {
  margin: 0;
}

.sub-logo {
  height: 50px;
  vertical-align: middle;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 10px;
}

.tile-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.tile {
  background-color: white; /* white interior */
  border: 3px solid grey; /* colored border */
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tile:hover {
  background-color: white;
  border-color: grey;
  transform: scale(1.05);
}

.tile p {
  font-size: 1.2rem; /* Larger text */
  font-weight: bold; /* Bold */
  margin-top: 10px;
  color: #1a1a1a;
}

.image {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: 10px;
}


.grid.hover-effect .tile {
  opacity: 0.3;
  transform: scale(0.95);
  z-index: 1;
}

.grid.hover-effect .tile.hovered {
  opacity: 1;
  transform: scale(1.2) translateY(-20px);
  z-index: 10;
}

.title-section {
  background-color: #2056ae; /* Uni Bonn Yellow */
  padding: 5px 0; /* adds 40px space top and bottom */
  margin-bottom: 0px; /* spacing below yellow area */
}

.sfb-section {
  height: 1px;
  background-color: #7cc5d6; /* Uni Bonn Yellow */
  padding: 5px 0; /* adds 40px space top and bottom */
  margin-bottom: 0px; /* spacing below yellow area */
}

.bat-section {
  height: 1px;
  background-color: #da6005; /* Uni Bonn Yellow */
  padding: 5px 0; /* adds 40px space top and bottom */
  margin-bottom: 0px; /* spacing below yellow area */
}

.title-section h1 {
  margin: 0;
}

