@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

/* Unifies font across frontend */
* {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Stops whitespace surrounding page */
body {
  margin: 0;
}

/* CSS Variables */
:root {
  --main: #000055;
}