body {
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #111;
	-webkit-font-smoothing: antialiased;
}

a:hover {
	color: #fff !important;
}

h3 {
	letter-spacing: 1px;
	font-family: 'Merriweather', serif;
	text-shadow: 3px 3px 3px #00000080;
}

svg {
	padding-top: 5px;
	height: 40px;
}

svg path {
	fill: #fff;
}

.navbar {
	background-color: #00000080 !important;
}

.fixed-bottom {
	background-color: #00000000 !important;
}

.nav-item {
	font-size: .9rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	display: flex;
	justify-content: flex-end;
}

.nav-link {
	color: #fff !important;
}

.active .nav-link::after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: #ff3333;
	transition: width 0.5s;
}

.link-animation::after {
	content: '';
	display: block;
	width: 0;
	height: 2px;
	background: #ff3333;
	transition: width 0.5s;
}

.link-animation:hover::after {
    width: 100%;
}

.carousel-item {
	max-height: 100vh !important;
	overflow: hidden;
}

.carousel-image {
	z-index: -1;
	min-width: 100%;
	width: auto;
	height: auto;
	margin-left: -50%;
	max-height: calc(100vh - 75px);
}

.carousel-indicators {
	z-index: 9999;
	bottom: 40px !important;
}

.carousel-caption {
	opacity: 0;
	transition: opacity .5s;
	bottom: 20% !important;
}

.active .carousel-caption {
	opacity: 100;
	position: absolute;
	margin-left: 1rem;
}

.recipe-tag {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	background: #ff3333;
	box-shadow: 3px 3px 3px #00000080;
}

.recipe-title {
	font-weight: bold;
	color: #fff;
}

.recipe-subtitle {
	max-width: 80%;
	text-shadow: 3px 3px 3px #00000080;
}

.social-icons a {
	color: rgba(255,255,255,.5);
	font-size: 1.25rem;
}

.list-inline {
	margin: 0;
	padding: 0;
}

.list-inline-item:not(:last-child) {
    margin-right: 1rem;
}

@media (min-width:992px) {
	h3 {
		font-size: 4rem !important;
	}

	.navbar-brand:hover > svg path {
		fill: #fff !important;
	}

	.navbar {
		margin: 0 auto;
		max-width: 1200px;
		background-color: #00000000 !important;
	}

	.nav-inner {
		max-width: 1200px;
	}

	.navbar-brand {
		font-size: 1.5rem;
	}

	.page-inner {
		margin: 0 auto;
		max-width: 1200px;
	}

	.carousel-control-next, .carousel-control-prev {
		width: 5%;
	}

	.carousel-caption {
		left: 9%;
		width: 40%;
	}

	.carousel-image {
		margin-left: 0;
		max-height: 100%;
		max-width: 100%;
	}

	.recipe-tag {
		width: 80px;
		height: 80px;
	}

	.recipe-subtitle {
		font-size: 2rem;
		line-height: 2.25rem;
	}

	.carousel-indicators {
		bottom: 10px !important;
	}
}