
  

  @font-face {
    font-family: LibreBaskerville;
    src: url('fonts/LibreBaskerville-Regular.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap
  }

  h1{
    font-family: LibreBaskerville;
    font-size: 3rem;
    letter-spacing: 1px;
  }

h2{
  font-family: LibreBaskerville;
    font-size: 2rem;
    letter-spacing: 1px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: auto;
}
.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
/* Kein Hover-Effekt */
.gallery img:hover {
  transform: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

  main{
    color: #8f8c8c !important;
  }


.logo{
    width: 20%;
}

.rotate {
    animation: 22s linear infinite spin;
    display: block;
    margin: 70px auto 0
  }
  
  
  @keyframes spin {
    from {
      transform: rotate(0)
    }
  
    to {
      transform: rotate(360deg)
    }
  }

  .btn, .card{
    border-radius: 0rem !important;
  }

  .section-0 {
    height: 100vh;
    background-image: url(media/zeitung_scroll-over.png);
    background-attachment: fixed;
    background-size: cover;
}

.komd{
  width: 20%;
}


    /** Größere Monitore **/
    @media only screen and (min-width: 570px) {
      #mobil { display:none;
          }
  }
  
  /** Kleinere Monitore **/
  @media only screen and (max-width: 600px) {
     #desktop, #spinner, .box { display:none;
          }
        
        }