@layer reset, variables, components, utilities;

@import "./reset.css" layer(reset);
@import "./variables.css" layer(variables);

@import "../css/style.css" layer(components);


body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  font-family: var(--ff-sans);
  color: var(--color-white);
  background-color: var(--color-dark-black);
}

html, body {
  height: 100%;
  margin: 0;
}