* {
	margin: 0;
	padding: 0;
	/*font-family: Sans-serif;*/
	/*font-family: "Brush Script MT", cursive;*/
	font-family: Arial, Helvetica, sans-serif;
	box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', sans-serif;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
}
#collection, #about, #contact {
  scroll-margin-top: 100px;
}

/*
body {
	background-image: url(/src/images/joshua-kettle-mgsGfKcgzgM-unsplash.jpg);
	background-position: center 100px;
	background-repeat: no-repeat;
	background-size: 100vw;
	
}
*/
body > .background {
	background-image: url(/src/images/joshua-kettle-mgsGfKcgzgM-unsplash.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: fixed;
	width: 100vw;
	height: 100vh;
	z-index: -1;
	top: 0;
	overflow: hidden;
}


/*---------- back to top button ------------*/
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: #b28a00;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
	overflow: hidden;
  display: none;
  z-index: 1000;
	box-sizing: border-box;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
#backToTop:hover {
  background-color: #d6a700;
  transform: scale(1.05);
}

/*
.hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.show {
  opacity: 1;
  transform: translateY(0);
}