#appsSection {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );
}

.apps img {
  width: clamp(200px, 50%, 800px);
}

.apps p {
  width: 60%;
  text-align: justify;
}

.apps h1 {
  font-size: clamp(30px, 4vw, 42px);
  margin: 10px 0;
}

.apps {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
