@charset "UTF-8";

/* Breite mehr als 48em */
@media only screen and (min-width: 48em) {


} /* Ende @media */


/* Breite weniger als 48em */
@media only screen and (max-width: 48em) {
  ul#desktopmenue,
  p.photocase {
    display: none;
  }

} /* Ende @media */


/* Breite bis maximal 30em */
@media only screen and (max-width: 30em) {
  header h1 {
    font-size: 1.5em;
    margin: 0.25em 0 0 0.25em;
  }
} /* Ende @media */



/* Höhe weniger als 60em */
@media only screen and (max-height: 60em) {
  #wrapper {
    min-height: 100vh;
  }

} /* Ende @media */
