@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --dark: #0E0E0E;
  --light: #ffffff;
  --purple: #B58CF9;
  --purple-hover: #814adb;
  --gold: #FFF1A1;
  --box1: #82ffbb;
  --box2: #ffeaa3;
  --box3: #7feefe;
  --box4: #b58cf9;
}

*,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Jost", sans-serif;
  scroll-behavior: smooth;
}

.text *, .text {
  font-family: "IBM Plex Mono", monospace;
}

body {
  background-color: var(--dark);
  color: var(--dark);
  transition: background 0.5s ease-in-out;
}

.flex {
  display: flex;
  align-items: center;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-around {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.container {
  width: 95%;
  margin: 0 auto;
  margin-top: 10rem;
}

a {
  text-decoration: none;
}

button {
  outline: none;
  cursor: pointer;
}

/* animation */
p, h1, h2, h3, a, button {
  transform: translateY(50%);
  opacity: 0;
  filter: blur(5px);
  transition: all 0.3s ease-in-out;
}

.show {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}/*# sourceMappingURL=Universal.css.map */