/* Fonts */
@font-face {
  font-family: Lato;
  src: url('../assets/fonts/Lato-Regular.ttf');
}

@font-face {
  font-family: PTSansNarrow;
  src: url('../assets/fonts/PTSansNarrow-Bold.ttf');
}

@font-face {
  font-family: DancingScript;
  src: url('../assets/fonts/DancingScript-Bold.ttf');
}

/*Everything */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

html,
body {
  margin: 0px;
  height: 100%;
}

body {
  color: #555555;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 1.5em;
}