html {
	scroll-behavior: smooth;
}

* {
	font-family: neue-haas-grotesk-display, sans-serif;
}

#junknav {
	font-family: neue-haas-grotesk-display, sans-serif;
	font-weight: 900;
	font-style: normal;
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100px;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

#junkfood_nav a {
	display: inline;
	font-family: neue-haas-grotesk-display, sans-serif;
	font-weight: 900;
}

#junkwrapper {
	background-image: url("https://source.unsplash.com/1600x900/?sweets");
	background-size: cover;
}

#junkwrapper h1 {
	padding-top: 100px;
	font-family: neue-haas-grotesk-display, sans-serif;
	font-weight: 900;
	color: white;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: black;
	/* Help from csstricks.com for text border */
}
.jumbotron {
	margin-bottom: 0px;
}
main {
	background-color: #dcbcc4;
}

#junkwrapper p {
	color: white;
	font-family: neue-haas-grotesk-display, sans-serif;
	font-weight: 600;
}

.bold {
	font-weight: 900;
	color: white;
}

#faves p, a{
	font-size: 24px;
	font-weight: 600;
	text-align: center;

} 
/* resizes images in goodies page dynamically */
#list img {
  max-width: 300px;
}

/* Media Queries */

/* Tablets */
@media screen and (max-width: 992px) {
}

/* Large smartphones - navbar changes color */
@media screen and (max-width: 768px) {
}
/* Small smartphones - image placeholders change color */
@media screen and (max-width: 576px) {
}