/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito';
  background: url('../images/bg-image.jpg') no-repeat center center fixed;
  background-size: cover;
  color: rgb(167, 97, 16);
  line-height: 1.6;
  text-align: center;
}
