body {
  color: #939DEA;
}

.subtitle {
  color: #b7bdf5;
  opacity: 1;
}

.guidelines {
  text-align: left;
}

.guidelines-header h2 {
  margin: 0;
  font-size: 28px;
  color: #939DEA;
}

.guidelines-text {
  color: #b7bdf5;
}

.back-line {
  width: 84%;
  height: 0.75rem;
  margin: 2rem auto 2rem;
  background: repeating-linear-gradient(
    -45deg,
    #FFE6F5,
    #FFE6F5 2px,
    #fff 2px,
    #fff 4px
  );
  border-radius: 0.1875rem;
}

.back-home {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

  width: 3.2rem;
  height: 4rem;

  text-decoration: none;
  cursor: pointer;
  margin: 0 auto 38px;
}

.back-img {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.back-img.normal {
  opacity: 1;
  background-image: url("../images/icons/back.webp");
}

.back-img.hover {
  opacity: 0;
  background-image: url("../images/icons/back2.webp");
}

.back-home:hover .back-img.normal {
  opacity: 0;
}

.back-home:hover .back-img.hover {
  opacity: 1;
  transform: scale(1.1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 600px) {
  .back-line {
    width: 17.5rem;
  }
}