
@font-face {
  font-family: 'DINPro';
  src: url('fonts/dinpro_bold.otf') format('opentype');
}
body {
  margin: 0;
  font-family: 'DINPro', sans-serif;
  color: black;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-bottom: 1px solid black;
}
nav a {
  margin-left: 25px;
  text-decoration: none;
  color: black;
  font-weight: bold;
}
.logo a {
  text-decoration: none;
  color: black;
  font-size: 20px;
  font-weight: bold;
}
.page-title {
  font-size: 28px;
  color: black;
  margin: 60px 60px 30px;
}
.info-container {
  padding: 0 60px 40px;
}
.info-entry {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
}
.info-entry img {
  width: 250px;
  height: auto;
  margin-right: 40px;
}
.info-text h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  color: black;
}
.info-text h3:hover {
  text-decoration: underline;
}
.info-text p {
  margin-top: 10px;
}
.date {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}
footer {
  background-color: black;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  font-size: 14px;
}
