body {
  overflow-x: hidden;
}
/* Section Abount me */
.section-about-me {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  padding-top: 7rem;
}
.img-me {
  /* width: 450px;
  height: 450px; */
  align-self: center;
  justify-self: center;
}
.img-me img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 0px 57.3px 10px rgba(14, 29, 51, 0.1);
}
/* Section meine Daten */
.section-contact {
  overflow-x: hidden;
}
.hobbies {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}
/* box meine daten */
.container-bubble {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
/* section bubble */
.section-bubble {
  background: var(--black);
  position: relative;
}
.container-hobby-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.container-bubble .hobbies button {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  border: none;
  font-size: 1.3em;
  font-weight: 500;
  cursor: pointer;
}
.bubble-bounce {
  position: absolute;
  border-radius: 100%;
  background: linear-gradient(
    178.22deg,
    #45a49d 8.65%,
    #40b8a2 40.66%,
    #75d6ad 78.96%
  );
  box-shadow: inset 0px 4px 10px rgba(69, 164, 157, 0.2);
  animation: bounce 2s infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bubble-bounce img {
  width: 50px;
  height: 50px;
}
/* email */
.contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact > p {
  color: var(--green);
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 400;
}
.contact .email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0px 0px 57.3px 10px rgba(14, 29, 51, 0.1);
  padding-top: 0.5rem;
}
.contact .email a {
  color: var(--white);
  font-size: 1.5em;
}
.hobbies .container-icon {
  display: flex;
  gap: 1rem;
  opacity: 0;
}
/* icons open */
.hobbies .container-icon.active {
  opacity: 1;
  transform: scale(1);
}
/* icons open animation*/
.hobbies .container-icon img {
  -webkit-animation: fadeInLi 0.6s 0.2s forwards;
  animation: fadeInLi 0.6s 0.2s forwards;
}
.hobbies .container-icon img:nth-child(2) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.hobbies.container-icon img:nth-child(3) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.hobbies .container-iconimg:nth-child(4) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
/* section skills */
.section-skills {
  display: flex;
  flex-direction: column;
}
.container-skills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 2rem;
}
/* media-queries */
@media screen and (min-width: 3500px) {
  .card-gradient-green {
    flex-direction: row;
    padding: 5rem 0;
  }
  .project-card img {
    width: 500px;
    height: 350px;
  }
}
@media screen and (max-width: 1450px) {
  .section-skills {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1240px) {
  .container-skills {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 900px) {
  .section-about-me {
    grid-template-columns: 1fr;
  }
  .container-bubble {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 5rem;
  }
  .container-hobby-contact {
    flex-direction: row;
  }
  .container-skills {
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
  }
  .section-skills h4 {
    text-align: center;
  }
}
@media screen and (max-width: 720px) {
  .container-hobby-contact {
    flex-direction: column;
  }
  .container-bubble {
    gap: 7rem;
  }
}
@media screen and (max-width: 500px) {
  .contact .email img {
    display: none;
  }
  .contact .email p {
    font: 1em;
  }
}
