<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body {
  width: 100%;
  max-width:1080px;
  height: 100%;
  background-color: #000;
  font-family: 'Roboto', sans-serif;
  color:#fff;
  margin:auto;
}
p {
  font-family: 'Roboto', sans-serif;
}
.magic {
  display: table;
  width: 100%;
  height: auto;
  text-align: center;
  margin:50px auto;
}
.magic__title {
  display: table-cell;
  font-size: clamp(1rem, 6vw, 3.5rem);
  text-transform: uppercase;
  font-weight: 900;
}
.magic__who {
  color: #fff;
}
.tm-logo {
	background-image: url('https://static.osthessen-news.de/kinzig/kn_logo_app_bw.svg');
	width:100px;
	height:100px;
  margin: 50px auto;
	}
.tm-txt {
  margin:auto;
  text-align:center;
  font-size:1rem;
}

.tm-title {
  font-weight:900;
}
.tm-txt p{
  font-weight:300;
  line-height:1.5;
}

.tm-gallery-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  width: 100%;
}

.tm-gallery-grid-item {
  width: 100%;
}
.tm-gallery-grid-item img {
  width: calc(100% - 20px);
  transition: transform 0.75s;
  padding: 5px;
}
.tm-gallery-grid-item img:hover {
  transform: scale(1.1);
  transition: transform 0.75s;
}
.footer {
  padding: 50px 0;
  font-size: .9rem!important;
}
.footer a {
  text-decoration: none;
  padding: 0 20px;
  color:white;
  opacity: 0.5;
  transition: opacity .5s;
}
.footer a:hover{
  opacity: 1;
  transition: opacity .5s;
}</pre></body></html>