:root {
  --background: #fff1f1;
  --red: #fb3958;
  --red-dark-15: #e02745;
  --red-dark-25: #c0203b;
  --font: "Nunito", sans-serif;
  --textc: #122125;
}

.err-d-8-sec {
  height: 100%;
  background: var(--background);
  font-family: var(--font);
}
.err-d-8-sec .container {
  width: 75%;
  max-width: 700px;
  margin: 1.5rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.err-d-8-sec .container .header {
  color: var(--red);
  font-size: 5em;
  font-weight: 700;
  text-align: center;
  text-shadow: 2px 2px 5px var(--red-dark-25);
}
@media (max-width: 650px) {
  .err-d-8-sec .container .header {
    font-size: 3em;
  }
}
@media (max-width: 650px) {
  .err-d-8-sec .container {
    width: 85%;
  }
}
.err-d-8-sec .compcontainer {
  width: 75%;
  height: 13rem;
  padding: 1rem 0;
}
.err-d-8-sec .compcontainer svg {
  max-width: 100%;
  max-height: 100%;
  animation: bouncy 1300ms linear infinite;
}
@media (max-width: 650px) {
  .err-d-8-sec .compcontainer {
    height: 10rem;
  }
}
.err-d-8-sec .instructions {
  background: #fefefe;
  width: 80%;
  padding: 1rem;
  border: 1px solid #dcdcdc;
  border-radius: 0.25rem;
}
.err-d-8-sec .instructions h2 {
  font-size: 1.25em;
  line-height: 1.3;
  color: var(--red-dark-15);
}
@media (max-width: 650px) {
  .err-d-8-sec .instructions h2 {
    font-size: 1.05em;
  }
}
.err-d-8-sec .instructions p {
  font-size: 1.15em;
  line-height: 1.5;
  color: var(--textc);
}
@media (max-width: 650px) {
  .err-d-8-sec .instructions p {
    font-size: 1em;
  }
}
@media (max-width: 650px) {
  .err-d-8-sec .instructions {
    width: 100%;
  }
}
.err-d-8-sec .step {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 1.5rem;
  margin: 0.5rem 0;
}
.err-d-8-sec .step .icon {
  width: 1.25rem;
  height: 1.25rem;
  align-self: center;
}
@media (max-width: 650px) {
  .err-d-8-sec .step .icon {
    width: 1rem;
    height: 1rem;
  }
}
.err-d-8-sec .step p {
  display: inline-block;
  width: 80%;
  line-height: 1.5;
  padding-left: 0.5rem;
}

@keyframes bouncy {
  0% {
    transform: translateY(10px) translateX(0) rotate(0);
  }
  25% {
    transform: translateX(-10px) rotate(-10deg);
  }
  50% {
    transform: translateX(0) rotate(0deg);
  }
  75% {
    transform: translateX(10px) rotate(10deg);
  }
  100% {
    transform: translateY(10px) translateX(0) rotate(0);
  }
}/*# sourceMappingURL=errorDesign8.css.map */