:root {
  --darkgrey: #2a2c30;
  --blurple: #5865f2;
  --green: #57f287;
  --green-secondary: ##77de54;
  --yellow: #fee75c;
  --fuchsia: #eb459e;
  --red: #ed4245;
  --white: #ffffff;
  --black: #000000;
  --bg1: #2227ab;
  --bg2: #f6f6f6;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

input,
button,
a {
  outline: none;
}

*:focus {
  outline: none;
  border: none;
}

html,
body {
  /* background-color: #f6f6f6; */
  font-family: "Open Sans", "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: var(--white);
}

ul,
li {
  list-style: none;
}

body {
  width: 100%;
  height: 100%;
  max-width: 1920px;

  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  margin: 0 auto;
}

body.menu-open {
  overflow-y: hidden;
}

.text-shadow {
  text-shadow: 1px 1px 1.5px rgba(0, 0, 0, 0.2);
}

.badge {
  font-size: 0.6rem;
  padding: 1px 8px;
  border-radius: 10px;
  margin: 2.5px;
}