/* Rest all margins and padding for the elements: */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set styling for all html pages of the website: */
html {
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  color: black;

  /* Mountain Background: */
  /*background-image: url("../images/mountain2.jpg");*/
  background-color: rgb(59,59,59);

  /* Center and scale the image nicely: */
  background-attachment: fixed;
  background-position: center;
  background-size: cover;

  /* Gradient Background: */
  /* background-color: #000000;
  background-image: linear-gradient(150deg, #000000 0%, #434343 100%);
  background-attachment: fixed; */
}

/* Set body to be all of html: */
body {
  background-color: transparent;
  width: 100%;
  min-height: 100vh;
}
