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;
}

#memes p {
	padding: 50px;
	font-size: 32px;
	text-align: center;
	background: #dbdfe5;
}

#gifies {
	width: 300px;
	height: 300px;
	object-fit: cover;
}

#munchies_list {
	width: 100px;
	height: 100px;
	border: 1px solid black;
}

#gifs {
	margin-top: 100px;
}

/* #gifs .bold{
  font-weight: 900;
} */

#gifs p {
	padding: 50px;
	font-size: 32px;
	text-align: center;
	background: #dbdfe5;
}

/* all credit goes to Yuhomyan https://codepen.io/yuhomyan */

#shinybutton {
	border: none;
	background: rgb(27, 48, 235);
	background: linear-gradient(
		0deg,
		rgb(27, 48, 235) 0%,
		rgb(53, 70, 224) 100%
	);
	color: #fff;
	overflow: hidden;
}
#shinybutton:hover {
	text-decoration: none;
	color: #fff;
}
#shinybutton:before {
	position: absolute;
	content: "";
	display: inline-block;
	top: -180px;
	left: 0;
	width: 30px;
	height: 100%;
	background-color: #fff;
	animation: shiny-btn1 3s ease-in-out infinite;
}
#shinybutton:hover {
	opacity: 0.7;
}
#shinybutton:active {
	box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, 0.3),
		-4px -4px 6px 0 rgba(116, 125, 136, 0.2),
		inset -4px -4px 6px 0 rgba(255, 255, 255, 0.2),
		inset 4px 4px 6px 0 rgba(0, 0, 0, 0.2);
}

@keyframes shiny-btn1 {
	0% {
		-webkit-transform: scale(0) rotate(45deg);
		opacity: 0;
	}
	80% {
		-webkit-transform: scale(0) rotate(45deg);
		opacity: 0.5;
	}
	81% {
		-webkit-transform: scale(4) rotate(45deg);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(50) rotate(45deg);
		opacity: 0;
	}
}


/* 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) {
}
