* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --mainColor: #ae1653;
}
html body {
  height: 100%;
  font-family: Playpen Sans;
}
html .wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensures the wrapper takes the full height of the viewport */
}
h3 {
  color: #555;
}

a:hover {
  cursor: pointer;
  background-color: #e67da7;
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
a:active {
  cursor: pointer;
  background-color: #c7688e;
  transform: translateY(0px);
}
