/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Fixedsys Excelsior 3.01';
  font-style: normal;
  font-weight: normal;
  src: local('Fixedsys Excelsior 3.01'), url('fonts/FSEX300.woff') format('woff');
}

/* Grundlayout */
body {
  font-size: 1.4rem;
  font-family: 'Fixedsys Excelsior 3.01', monospace;
  background-color: #e6f7ff;
  color: #808080; /* Fließtext grau */
  line-height: 1.8;
  padding: 20px;
}

a {
  color: #707070;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Container */
.content35 {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* Logo */
#festival-logo {
  width: 400px;
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}

/* Überschriften */
h2 {
  font-size: 2.2rem;
  color: #0065B0; /* Dunkelblau */
  margin-bottom: 25px;
}

h3 {
  font-size: 1.8rem;
  color: #0065B0; /* Dunkelblau */
  margin-top: 15px;
  margin-bottom: 10px;
}


/* Listenbereich */
.liste {
  margin: 10px auto;
  text-align: left;
  display: inline-block;
  padding-left: 10px;
}
.liste ul {
  list-style: none;
  padding: 0;
}
.liste li {
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #808080;
}

/* Highlights */
.highlight {
  color: #FF7E00; /* Orange */
  font-weight: bold;
  font-size: 1.8rem;
}


.form-link {
  font-size: 1.8rem;
  color: #FF7E00;
  font-weight: bold;
  display: inline-block;
  margin: 10px 0 30px 0;
  text-decoration: none;
}

.form-link:hover {
  text-shadow: 0 0 10px rgba(255, 126, 0, 0.7);
}