/* Bootstrap Manipulation */

/* title dropdown */

.dropdown-menu.show {
	display: block;
	background-color: rgb(197, 56, 197);
	width: 963px;
	height: 300px;
	top: 38px;
	left: 20px;
}

.dropdown-item:focus,
.dropdown-item:hover {
	color: #16181b;
	text-decoration: none;
	background-color: transparent !important;
}

.dropdown-item.active,
.dropdown-item:active {
	color: #fff;
	text-decoration: none;
	background-color: transparent;
	border: #fff 1px solid;
	border-radius: 10px;
}

.link-head {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
}

.link-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
	line-height: 40px;
	padding-left: 25px;
}

li {
	font-size: 40px;
	font-weight: 100;
}

.mini-link {
	font-size: 30px;
}

/* --Search Bar */

.mr-lg-5,
.mx-lg-5 {
	margin-right: 5000px;
}

/* --Search Button */
.btn-outline-success {
	color: #fff;
	border-color: #fff;
}

.btn-outline-success:hover {
	color: #ff6700;
	background-color: #fff;
	border-color: #ff6700;
}

/* HEADER/FOOTER CSS */

body {
	background-color: #dcbcc4;
	color: white;
}

nav {
	/* position: absolute; */
	font-size: 35px;
	text-align: left;
	z-index: 1;
	/* left: -72px; */
}

a:link,
a:visited {
	color: white;
	text-decoration: none;
}

a:hover {
	color: black;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 150px;
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}

time {
	/* position: absolute; */
	color: #fff;
	font-size: 20px;
	padding-bottom: 10px;
	margin-left: 20px;
	font-weight: 900;
	/* left: 8em; */
	/* top: 52px */
}

.weatherDash {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin-left: 25px;
	font-size: 20px;
	/* left: -43.5em; */
	width: 200px;
}

.temp {
	font-size: 20px;
}

a.login {
	display: block;
	/* position: absolute; */
	float: right;
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	margin: 50px;
	color: aliceblue;
	padding: 5px;

	/* left: 86.5em; */
	/* top: 1em */
}

#junkfood {
	font-family: neue-haas-grotesk-display, sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: 50px;
	text-align: center;
	line-height: 0;
	color: #fff;
	width: 250px;
}

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

#junkfood:hover {
	color: #fd7e14;
}

footer {
	display: flex;
	position: relative;
	justify-content: center;
	align-items: flex-end;
	height: 20px;
	top: 20vh;
	font-size: 30px;
}

@media screen and (max-width: 1440px) {
	.icon {
		width: 50px;
	}
	
	.time {
		font-size: 15px;
	}

	.temp {
		font-size: 20px;
	}

	a.login {
		font-size: 15px;
		margin: 25px;
	}
}