@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

*,
html,
body {
  --textC: white;
  --headerB: rgba(255, 255, 255, 50%);
  --websiteB: rgba(255, 255, 255, 25%);
  --websiteHoverB: rgba(217, 28, 204, 25%);
  --accentC: #d91ccc;

  margin: 0;
  padding: 0;

  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;

  overscroll-behavior: none;

  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a {
  color: inherit;
  text-decoration: none;
}
