*,
*::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';
}

p {
  margin-block-start: 1lh;
}

a,
button,
img {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
}

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

body {
  height: 100dvh;
  width: 100%;
  position: relative;
  background-image: url(assets/image.svg);
  background-size: contain;
  animation: backgroundTop 10s linear infinite alternate;
}

@keyframes backgroundTop {
  from {
    background-position: 0% 0%;
  }
  to {
    background-position: 100% 100%;
  }
}
