@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;600&display=swap');

body {
  background: linear-gradient(to bottom, #ffffff, #fff5fd);
  font-family: 'Urbanist', sans-serif;
  color: #a0006d;
  text-align: center;
  margin: 0;
  padding: 40px;
}

h1 {
  color: #a0006d;
  font-weight: 600;
}

p {
  color: #a0006d;
  margin: 20px 0;
  font-size: 18px;
}

a {
  color: #a0006d;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.5s ease, transform 0.5s ease;
}

a:hover {
  color: #000000;
  transform: scale(1.15);
}

a:visited {
  color: #6a0dad;
}

small,
.subtext {
  color: #6a0dad;
}

div {
  margin: 40px 0;
}