

section{
  display: grid;
grid-template-columns: repeat(auto-fit);
grid-gap: 2em;
}
article {
  background-color: #fff5;
  box-shadow: 0 1px 3px rgb(255 255 255 / 0.2), 0 1px 3px rgb(255 255 255 / 0.3);
  transition: box-shadow 0.3s cubic-bezier(.25,.8,.25,1);
  display: grid
  justify-content: center;

  align-items: center;
  border-radius: 0.8rem;
  padding: 2rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.2rem;
  width: 50rem;
}
.blogbild{
  width: 100%;
  max-width: 250px;
}

article:last-child {
  margin-bottom: 1rem;
}

article h3 {
  margin-top: 0;
  margin-bottom: 1.6rem;
  font-size: 2.1rem;
  font-weight: bold;
  width: 100%;
  text-decoration: underline;
  color: #112e42;
}
article h4{
  font-size: 2rem;
  padding-right: 2rem;
  height: 100%;
  font-weight: lighter;
  width: 8.5rem;

}

article p {
  margin-top: 0;
  margin-bottom: 1.6rem;
  line-height: 1.6;
}
article div{
  display: flex;
  align-items: center;
}

audio{
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: #112e42;
  border: 4px solid;
  border-radius: 0;
  width: 350px;
  border-color: #112e42;
  border-radius: 40px;

}
article:hover {
  box-shadow: 0 4px 12px rgb(255 255 255 / 0.3), 0 6px 8px rgb(255 255 255 / 0.4);
}


@media (max-width: 910px) {
  body {
    margin: 0;
  }
  header,
  main {
    border-radius: 0;
  }
  header {
    margin-bottom: 0;
  }

  audio{
    width: 300px;
  }
  article {
    width: 45rem;
  }
}

@media (max-width: 600px) {
  header,
  main {
    padding: 2em;
  }
  audio{
    width: 300px;
  }
  article {

    width: 40rem;
  }


}

@media (max-width: 400px) {
  header,
  main {
    padding: 1.2em;
  }
  article {
    box-shadow: initial;
    padding: 1rem;;
    width: 35rem;
  }
  article:hover {
    box-shadow: initial;
  }
  audio{
    width: 175px;
    border: 2px solid;
  }
}
