*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue';
}

a {
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

body {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  place-content: center;
  background-image: linear-gradient(to top, #0250c5 0%, #d43f8d 100%);
}

aside {
  border-left: 5px solid springgreen;
  padding: 1rem;
  background-color: #00ff7f33;
  color: springgreen;
  transition: filter 0.5s ease;

  &:hover {
    filter: hue-rotate(120deg);
  }
}
