#home {
  width: 100%;
  position: relative;
}

#home > .blur {
  background-color: var(--color-base);
  width: 300px;
  height: 300px;
  top: 30px;
  right: calc(50% - 150px);
  border-radius: 300px;
}

#p-intro {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  margin: var(--home-title-margin);
  position: relative;
}
#p-intro > h2 {
  font-size: var(--home-title-font-size);
  opacity: 0; 
  margin: 5px;
  transform: translateY(50px); 
  animation: fadeInUp 1s ease forwards;
}
#p-intro > p {
  font-size: var(--home-text-font-size);
  max-width: 500px;
  opacity: 0; 
  transform: translateY(50px); 
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
  line-height: 28px !important;
}

#p-methode {
  width: 100%;
  margin: 50px 0 ;
}

#p-methode > div {
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

#p-methode > div > .media {
  height: 100%;
  min-width: 300px;
  height: 350px;
  max-width: 500px;
  margin: 20px 0px;
  flex-shrink: 1;
  flex-grow: 1;
  background-color: #a1a1a1;
  background-image: url('/assets/pianostudio.jpg');
  background-size: cover;
  background-position: left bottom;
  border-radius: 10px;
  box-shadow: 18px 18px 0px #000;
  transition: box-shadow ease 500ms;
}

#p-methode > div > .media:hover {
  box-shadow: -18px 18px 0px #000;
}

#p-methode > div > .text {
  max-width: 450px;
  margin-right: 30px;
  margin-bottom: 10px;
}

@media (max-width: 800px), (max-height: 700px) {
  #p-methode > div > .media {
    height: 250px;
    min-width: 250px;
    max-width: 350px;
  }

  #p-methode > div > .text {
    margin-right: 0;
  }
}