/*
  CSS RESET
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: normal;
  font-size: 100%;
}

ul,
ol {
  list-style: none;
}

img,
video {
  width: 100%;
}

a {
  color: rgb(114, 154, 230);
  text-decoration: none;
}




/* 
CUSTOM STYLES 
*/


@media (0 < width <= 230px) and (0 < height <= 2560px) {
  body {
    display: none;
  }
} 

@media (0 < width <= 574px) and (0 < height <= 2560px) {
@font-face {
  font-family: "Floreal";
  src:
    url("../../../assets/fonts/Floreal-Italic.woff") format("woff"),
    url("../../../assets/fonts/Floreal-Italic.woff2") format("woff2");
}


body {
  font-family: "Floreal";
  font-size: 24px;
}


a.pfeil {
  position: fixed;
  font-size: 40px;
  margin-left: 16px;
}

p {
  margin-bottom: 1.5em;       /* Abstand nach unten */ 
}

h1 {
  font-family: "Floreal";
  font-size: 40px;
}



/* 
IMAGES as LINKS
 */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: white;
  color: black;
  line-height: 1.2;
  padding: 0;
  min-height: 100vh;
}

nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

nav a {
  display: block;
  position: relative;
  text-decoration: none;
  color: rgb(114, 154, 230);
  font-size: 40px;
  line-height: 1.1;
  padding-bottom: 48px;
}


nav a img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 1vw;
  object-fit: cover;
}
} 

@media (574px < width <= 2560px) and (0 < height <= 2560px) {
  body {
    display: none;
  }
}


