/* Importing custom fonts */
@font-face {
  font-family: "ArcadepixPlus";
  src: url("../fonts/ArcadepixPlus.ttf") format("truetype");
}

@font-face {
  font-family: "NunitoSans";
  src: url("../fonts/NunitoSans.ttf") format("truetype");
}

/* Base styles for the document */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "ArcadepixPlus", sans-serif;
}

/* Body styling */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
