@import url("/assets/styles/colors.css");
@import url("/assets/styles/fonts.css");
@import url("/assets/styles/buttons.css");

* {
  box-sizing: border-box;
}

html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  scrollbar-width: 8px;
  scrollbar-color: var(--primary) transparent;
}

body {
  font-family: var(--font-poppins);
  background-color: var(--neutral-950);
  color: var(--neutral-50);
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0;
  height: 100dvh;
  min-height: 100dvh;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  color: var(--neutral-50);
  text-decoration: none;
}

/* Notifications */
.notifications-container {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 2px;
  overflow-y: hidden;
  display: flex;
  flex-direction: column-reverse;
  list-style: none;
  margin: 0;
  padding: 25px;
  gap: 15px;
  width: 400px;
}

.notifications-container > li {
  align-items: center;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  gap: 10px;
  background-color: #2a2a2a;
  outline: 2px solid #fff;
}
