@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #222;
  min-height: 100vh;

  text-transform: capitalize;
}

.body {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #222;
  min-height: 100vh;
}

.maskuline,
.femenin,
.neutral {
  border-radius: 50%;
  height: 20px;
  width: 20px;
  background-color: blue;

  color: white;
}

.femenin {
  background-color: #ff0057;
}
.neutral {
  background-color: green;
}

.artikels {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 30px;
  /* position: absolute; */
  /* top: 100px;
    left: 500px; */

  z-index: 1;
}
.artikel {
  display: flex;
  margin: 10px;
  color: white;
  gap: 10px;
}
/* 
@media (max-width:768px){
    .artikels{
        display: flex;
        position: absolute;
        top: 100px;
        left: 100px;
        
        z-index: 1;
    }

    } */

.title {
  text-align: center;
  font-size: 50px;
  color: white;
  margin-top: 30px;
}

.container {
  position: relative;
  width: 1000px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 20px;
  

}

.container .card {
  position: relative;
  height: 200px;
  background: #fff;
  display: flex;
  width: 32%;
  margin: 30px 0;
}

.container .card .imgBx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.5s ease-in-out;
}

.container .card:hover .imgBx {
  height: 100px;
  width: 100px;
  left: -75px;
  top: calc(50% - 75px);
  transition: 0.5s ease-in-out;
  background: #ff0057;
}

.container .card .imgBx::before {
  content: alt(data-text);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.container .card .imgBx img {
  max-width: 180px;
  color: white;
  transition: 0.5 ease-in-out;
}

.container .card:hover .imgBx img {
  max-width: 75px;
}

.container .card .content {
  position: absolute;
  right: 0;
  width: calc(100% - 20px);
  height: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.container .card .content h3 {
  margin-bottom: 5px;
  font-size: 30px;
}

.container .card .content a {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  background: #333;
  text-decoration: none;
  color: white;
}

.container .card .content .klein {
  font-size: 30px;
}

.container .card .content a {
  display: none;
}
.m {
  color: blue;
}
.n {
  color: green;
}
.f {
  color: #ff0057;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  gap: 40px;
}

.btn {
  text-align: center;
  border-radius: 10px;
  background-color: #ff0057;
  border: none;
  width: 180px;
  height: 50px;
}

.btn a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  padding: 20px;
}

@media (max-width: 991px) {
  .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .container .card {
    width: 80%;
  }
}
