:root {
  --main-bg-color: rgb(60, 3, 236);
  --main-bg: linear-gradient(
    180deg,
    rgba(60, 3, 236, 1) 0%,
    rgba(38, 38, 38, 1) 100%
  );

  --animate-duration: 1200ms;
  /* --animate-delay: 0.9s; */
}

html,
body {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--main-bg);
  max-width: 100%;
  overflow-x: hidden;
}

html {
  overflow: auto;
  scroll-behavior: smooth;
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  color: white;
}

body:after {
  content: ' ';
  position: fixed;
  height: 110vh;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--main-bg);
  z-index: -1;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
button {
  font-family: 'Sen', sans-serif;
}

button {
  cursor: pointer;
}
