:root {
  --black: #060808;
  --dark-green: #122123;
  --bold--white: #EDFAF2;
  --white: #DAE6DE;
  --accent-green: #42A866;
  --purple: #E00D62;
  --grey: #949C97;
}
body {
  position: relative;
}
.background-decoration:not(.bottom) {
  display: none;
}
.bottom {
  bottom: 0;
  left: 50%;
  width: 100%;
  transform: translate(-50%);
  z-index: -1;
  position: absolute;
  opacity: 0.4;
}
main {
  padding: 28px 1rem 8rem;
}
article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
article>img {
  width: clamp(200px, 70vw, 500px);
  margin-bottom: 2rem;
}
article p {
  width: 80%;
  font-size: 1.5rem;
}
@media screen and (min-width: 1080px) {
  .background-decoration:not(.bottom) {
    display: block;
    z-index: -1;
    position: absolute;
    opacity: 0.4;
  }
  article p {
    width: 50%;
  }
  .left {
    left: 0;
    max-width: 200px;
    height: 100%;
    top:0;
  }
  .right {
    height: 100%;
    max-width: 200px;
    top: 0;
    right: 0;
  }
  .bottom {
    bottom: 0;
    left: 50%;
    width: 100%;
    transform: translate(-50%);
  }
}
@media screen and (max-width:500px) {
  main {
    padding: 0 0 5rem;
    height: 100%;
    margin-top: 8rem;
  }
  article p {
  width: 90%;
  font-size: 1.2rem;
}
/*   body{
    min-height: 100%; 
  }
  html{
     height: 100%; 
  } */
  .bottom{
    display: none;
  }
}

