:root {
  --darkgrey: #2a2c30;
  --blurple: #5865f2;
  --green: #2ecc71;
  --green-secondary: #27ae60;
  --yellow: #fee75c;
  --fuchsia: #eb459e;
  --red: #ed4245;
  --white: #ffffff;
  --black: #000000;
}

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

input,
button,
a {
  outline: none;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  background-color: var(--darkgrey);
  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;
  overflow-x: hidden;

  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;
}
