body {
  font-family: 'Lexend';
  font-size: 22px;
  background-color: #f9f5e3;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container{
  width: 70%;
  margin: 0 auto;
  max-width: 1200px;
}
h1 {
  color: #f92a82;
  font-size: 500%;
  margin-top: 0;
}
h3 {
  font-size: 300%;
  color: #f92a82;
  font-weight: normal;
  margin-top: -5%;
}
a {
  color: #d78521;
  text-decoration: none;
  position: relative;
}
p {
  color: #1e2019;
}

li {
  margin-top: 50px;
  list-style: none;
}
/*Bild*/
.murgbild{
  width: 100%;
  top: 0%;
  display: block;
  margin: 0;
  padding: 0;
}
/*Hotbar*/
div.trans{
  width: 100%;
  margin-top: 0%;
  height: 100px;
  background-image: linear-gradient(rgba(30,32,25,0.8),rgba(30,32,25,0.7));
  position: sticky;
  top: 0;
  z-index: 1;
}
.texttrans{
  position: absolute;
  top: 10%;
  opacity: 1;
  color: #ffffff;
  z-index: 2;
  float: right;
}
.obentext{
  margin-top: -2%;
  margin-bottom: 30%;
}
.logo {
  margin-top: 0.5%;
  margin-left: 3%;
  height: 80px;
}
/*Button Menü*/
button {
  font-family: 'Lexend';font-size: 22px;
}
.dropbtn {
  background-color: rgba(30,32,25,0);
  color: #f9f5e3;
  padding: 30px;
  font-size: 25px;
  border: none;
  cursor: pointer;
}
.dropdown {
  position: relative;
  display: inline-block;
  right: 0;
  top:0;
}
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 90;
  background-color: rgba(30,32,25,0.8);
  min-width: 200px;
  z-index: 1;
  transition: 0.3s;
}
.dropdown-content a {
  color: #e9e5e3;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}
.dropdown-content a:hover {background-color: #f92a82; transition: 0.3s;}
.dropdown:hover .dropdown-content {display: block; delay: 0.3s;}
.dropdown:hover .dropbtn {background-color: #f92a82; transition: 0.3s;}

/*Card*/
.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  bottom: 50%;
}

.card {
  background-size: cover;
  background-position: center;
  position: relative;
  width: 250px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
  transition-timing-function: ease-in-out;
}

.card a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  color: white;
}

.card-text {
  position: absolute;
  color: #f9f5e3;
  opacity: 1;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align:center;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.cardoverlay{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 0;
  transition: 0.2s;
  transition-timing-function: ease-in-out;
}
.card:hover .card-text{
  font-size: 200%;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.card:hover{
  width: 600px;
  transition: 0.2s;
  transition-timing-function: ease-in-out;
}
.card:hover .cardoverlay {
  background-color: rgba(255, 0, 0, 0.1);
  transition: 0.2s;
  transition-timing-function: ease-in-out;
}

/*footer*/
.fuss{
  font-size: 70%;
  background-color: #1e201988;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
.fuss a,.fuss p{
  color: #e9e5e3;
  margin-left: 15%;
}

.footpic{
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
}
