@charset "UTF-8";
/* CSS Document */


* { padding: 0; margin: 0; }

body {
 background-color:#ffffff;
 color:#000000;
 font-family: "Century Gothic", Verdana, sans-serif; 
 font-size: 15px; 
}
div#wrapper {
background-color:#ffffff;
max-width: 60%;
margin-top: 5px;
margin-bottom: 50px;
margin-right: auto;
margin-left: auto;
visibility: visible;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
div#wrapper {
background-color:#ffffff;
max-width: 90%;
margin-top: 5px;
margin-bottom: 50px;
margin-right: auto;
margin-left: auto;
padding-left: 20px;
padding-right: 20px;
visibility: visible;
}
}
a {
text-decoration: none;
outline: none;
color: #000000;
font-size: 15px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
a {
text-decoration: none;
outline: none;
color: #000000;
font-size: 10px;
}
}
.img {
width: 100%;
height: auto;
border: 0;
}
#navi {
position: relative;
margin-left: auto;
margin-right: auto;
text-align: center;
margin-top: 20px;
margin-bottom: 30px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
#navi {
position: relative;
margin-left: auto;
margin-right: auto;
text-align: center;
margin-top: 10px;
margin-bottom: 15px;
}
}
#ueberschrift {
position: relative;
margin-left: auto;
margin-right: auto;
text-align: center;
margin-top: 10px;
margin-bottom: 30px;
font-size: 30px;
font-weight: bold;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
#ueberschrift {
position: relative;
margin-left: auto;
margin-right: auto;
text-align: center;
margin-top: 10px;
margin-bottom: 10px;
font-size: 30px;
font-weight: bold;
}
}
#unter_ueberschrift {
position: relative;
margin-left: auto;
margin-right: auto;
text-align: center;
margin-top: 10px;
margin-bottom: 30px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
#unter_ueberschrift {
position: relative;
margin-left: auto;
margin-right: auto;
text-align: center;
margin-top: 10px;
margin-bottom: 20px;
}
}

.grid-container {
display: grid;
grid-template-columns: auto auto;
gap: 2rem;
width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}
@media screen and (min-width: 320px) and (max-width: 767px) {
.grid-container {
display: grid;
grid-template-columns: auto;
column-gap: 20px;
width: 100%;
padding: 0;
}
}
.grid-item {
  font-size: 30px;
  text-align: center;
}

img:hover {
  -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transition: scale(1.2);
        transform: scale(1.2);
}
img:hover {
  -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
        transition: all 1s ease; 
}




