/* Fancy links */

.fancy-link {
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: color 0.1s linear;
}
.fancy-link:after {
  content: '';
  display: block;
  position: absolute;
  left: -0.9rem;
  right: -0.9rem;
  top: -0.9rem;
  bottom: -0.9rem;
  border: 0.7rem double #ff4bd8;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transform: scale(0, 1) skew(0deg, 0deg);
  transition: transform 0.1s ease-in-out, opacity 0.1s linear;
}
.fancy-link:focus:after {
  opacity: 1;
  transform: scale(1, 1) skew(-10deg, -1deg);
}

/* Drag container */

.drag-container {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
}

/* Demo wrapper */

.demo {
  position: relative;
  border-width: 0.5rem 1rem 1rem 0.5rem;
  border-style: solid;
  border-color: rgb(101, 255, 195);
  border-image: initial;
  border-radius: 1rem;
}

/* Sections */

/* section {
  margin: 0 auto;
  padding-top: 0;
  max-width: 94rem;
  width: 100%;
  text-align: left;
}
section.demo {
  margin-top: 3rem;
}
section h4 {
  margin: 3rem 0 1.5rem 0;
  font-weight: 500;
  font-size: 2rem;
  color: #3e3e3e;
}
@media (max-width: 767px) {
  section.demo {
    border-top: 0;
  }
} */

/* Section titles */

.section-title {
  color: #ff69ea;
  font-family: 'Lazer84', 'Fira Sans', Helvetica, Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 400;
  margin: 8rem 0 4rem 0;
  letter-spacing: 0.3rem;
  text-transform: lowercase;
  text-align: center;
}
.section-title > span {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.section-title > span:after {
  content: '';
  display: block;
  position: absolute;
  left: -2rem;
  right: -2rem;
  bottom: -0.7rem;
  border-bottom: 0.7rem double #65ffc3;
}

/* Feature list */

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-list-item {
  display: flex;
  position: relative;
  margin: 6rem 0;
}
.feature-list-item:last-child {
  margin-bottom: 0;
}
.feature-list-icon {
  margin-right: 3rem;
  width: 12vw;
  height: 12vw;
  max-width: 10rem;
  max-height: 10rem;
  padding: 1vw;
  color: #ff69ea;
  border: 0.5rem double #65ffc3;
  border-right-width: 1rem;
  border-bottom-width: 1rem;
  border-radius: 2rem;
}
.feature-list-icon svg {
  width: 100%;
  height: 100%;
}
.feature-list-text {
  width: 100%;
}
.feature-list-text h4 {
  display: flex;
  align-items: center;
  margin: 0 0 1.5rem 0;
  font-weight: 500;
  font-size: 2rem;
}
.feature-list-text p {
  margin: 1.5rem 0 0 0;
}
@media (max-width: 767px) {
  .feature-list-item {
    padding-left: 0;
  }
  .feature-list-icon {
    left: 0;
    margin: 0;
    width: 4rem;
    height: 4rem;
    padding: 0;
    border: 0;
    border-radius: 0;
  }
  .feature-list-text {
    margin-left: -4rem;
  }
  .feature-list-text h4 {
    margin: 0 0 1.5rem 5.5rem;
    min-height: 4rem;
  }
}

/* Author */

.author {
  margin: 6rem 0;
  font-weight: 500;
  font-size: 2rem;
  color: #3e3e3e;
  font-style: italic;
  text-align: center;
}
