
/* 
    Created on : 28.08.2024, 17:24:03
    Author     : Matthias lokal
*/
      

h1 {
    font-size: 3em;
    color: darkgray;
}

h3 {
    font-size: 2em;
    color: darkgray;
}

h2 {
    font-size: 2em;
    color: darkgray;
}

h4 {
    font-size: 2em;
    color: darkgray;
}

h5 {
    font-size: 1em;
    color: white;
}


.bannerfolgel{
    float: left;
    
}

.bannerfolger{
    float: right;
    
}

.box {
 float: left; width: 32%; margin-right: 2%; padding: 20px; background: #eee; box-sizing: border-box; 
}
.box:last-child {
 margin-right: 0; 
}


.bilder{
    height:140px;
    width:200px;
    border: 4px;
    border-color: whitesmoke;
    border-style: outset;
    float: left;
    
}

.format{
    text-align: left;
  margin: 0 auto;
    
}



#formular{
    display: block;
    text-align: center;
     align-content: center;
     font-size: 10pt;
     color: white;
    background-color: gainsboro;
    
    
    
}

#navi{
    display: block;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
     align-content: center;
     font-size: 20pt;
     color: white;
    background-color: gainsboro;
}

#bilder{
    display: block;
    text-align: center;
    align-content: center;
     font-size: 20pt;
     color: white;
}

#center{
display: block;
  align-items: center;
  justify-content: center;


}

.impressum{
    display: block;
   text-align: center;
     font-size: 10pt;
     color: whitesmoke;
     
}

.vorschau{
    border: 4px;
    border-color: whitesmoke;
    border-style: outset;
    float: left;
    
}




/* Stylesheet G�stebuch */
p {
    font-family: Helvetica;
    font-size: 10pt;
    color: whitesmoke;
    display: block;
}

table {
    width: 80%;
}

input {
    width: 500px;
}

textarea {
    width: 500px;
}

/*
@media screen and (max-width: 780px) {
   table {
     max-width: 70%; 
   }
}
*/

Media Queries for Tablets 
@media all and (max-width : 768px) {
  
max-width: 80%;

.navigation {
    flex-direction: column;
    font-size: 0.9rem;
  }

  .rotated-image {
    max-width: 60%;
    transform: rotate(10deg); /* Reduce rotation for smaller screens */
  }
}

Media Queries for Phones 
@media (max-width: 480px) {
 max-width: 60%; 

.navigation {
    flex-direction: column;
    font-size: 0.8rem;
  }

  .center-image {
    max-width: 80%;
    height: auto;
  }

  .rotated-image {
    transform: none; /* Remove rotation on very small screens */
    max-width: 90%;
  }

  .image-wrapper img {
    max-width: 40px;
  }
}

