
.dm-sans {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

header.site-header{
  padding: 0;  
}

.header{
    display: flex;
  justify-content: space-between;
  align-items: center;
}

h1{
  font-family: DM Sans;
}

h3{
  font-family: DM Sans;
  margin-bottom: 0.57em;
  margin-top: 0;
}


body {
  margin: 2rem;
  padding: 2rem;
}

a{
  font-family: DM Sans;
  font-weight: 00;
  font-size: large;
  line-height: 150%;
}

.container {
  padding: 0;
  margin: 0;

  display: flex;
  flex-wrap: wrap;
  /* background-color: #f1f1f1; */
}

.tile{
  padding: 1rem;
  padding-left: 0;
  margin: 0;
}

.img-detail{
  max-height: 650px;
  max-width: 650px;
}

a:link{
  color: black;
  text-decoration: none;
}

a:active{
  color: black;
}

.logofont{
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 100;
}

.detailcontainer{
  display: flex;
  flex-wrap: wrap;
}

.detail{
  max-width: 1200px;
  padding-right: 8em;
}



















.hamburger-icon-container {
  color:white;
  height: 1.7em;
  width: 1.7em;
  position: relative;
  cursor: pointer;
  background: currentColor;
  border:10px solid currentColor;
  border-radius: 3px;
}

.hamburger-icon,
.hamburger-icon:before,
.hamburger-icon:after {
  content: '';
  position: absolute;
  height: 3px;
  width: 1.7em;
  background: black;
  transition: all .2s ease;
}

.hamburger-icon {
  top: 0.75em
}

.hamburger-icon:before {
  top: -0.55em
}

.hamburger-icon:after {
  top: 0.55em
}

/* Darstellung wenn das Close-Icon angezeigt werden soll */

.hamburger-active .hamburger-icon-container {
  color:rgb(255, 255, 255);
}

.hamburger-active .hamburger-icon {
  background: transparent;
  transform: rotate(-135deg)
}

.hamburger-active .hamburger-icon:before,
.hamburger-active .hamburger-icon:after {
  top: 0
}

.hamburger-active .hamburger-icon:before {
  transform: rotate(90deg)
}