:root {
  /* Positioning */
  --containerPaddingHorizontal: 120px;
  --containerMarginHorizontal: 120px;
}

*::selection {
  background: #ffe5f7;
}

/* Learn more button container */
.learn-more-container {
  position: relative;
  right: -25px;
  align-self: center;
  width: 210px;
}
/* Custom design for button */
.magenta-button {
  font-family: pragmatica-bold;
  font-size: 16px;
  line-height: 26.62px;
  color: white;
  padding: 11.5px 40px;
  background-image: url("/assets/images/incisive-color-gradient-magenta.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.magenta-button .logo-img {
  transform: scale(2);
  /* align-items: center; */
  display: flex;
  width: 0px;
  height: 0px;
  transition: all 500ms ease-in;
}
.magenta-button:hover .logo-img {
  width: 16px;
  height: 16px;
}
.magenta-button:hover {
  cursor: pointer;
}

/* Links */
a.link {
  color: black;
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-decoration-color: #ff00ae;
}

a.link:hover,
a.link.active {
  box-shadow: inset 0 -6px 0px 0px #ff00ae;
  text-decoration: none;
}

/* Copyright footer */
#copyright {
  padding: var(--containerPaddingHorizontal);
}
footer > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1000px) {
  :root {
    /* Positioning */
    --containerMarginHorizontal: 40px;
  }
}

@media screen and (max-width: 450px) {
  :root {
    /* Positioning */
    --containerPaddingHorizontal: 20px;
    --containerMarginHorizontal: 20px;
  }

  footer#copyright {
    padding: 80px 20px;
  }

  #copyright > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  #copyright img {
    width: 130px;
    height: 30.97px;
  }
}
