@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap');

* {
	padding: 0px;
	margin: 0px;
}

a {
	text-decoration: none;
	color: black;
}

body {
	font-family: 'Robot Condesed', sans-serif;
	margin: 0px;
	background: white;
	height: auto;

	max-width: 900px;
	margin: auto;

	box-shadow: 30px 0px 40px rgba(0,0,0,0.1), -30px 0px 40px rgba(0,0,0,0.1);
}

ul {
	margin: 0px;
	padding: 0px;
	display: flex;
}

ul li {
	list-style: none;
}

ul li a {
	color: black;
	padding: 0 5px;
	font-size: 1.1em;
	text-decoration: none;
	font-weight: bold;
}
@media(min-width: 680px) {
#landing-image {
	background-image: url('../images/ChickenRiceAndBroccoli_9850.jpg');
	width: 100%;
	height: 50vh;

	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
}

@media(max-width: 680px) {
#landing-image {
	background-image: url('../images/ChickenRiceAndBroccoli_9850.jpg');
	width: auto;
	padding: 0px;
	margin: 0px;
	height: 40vh;

	background-size: contain;
	background-position: center ;
	background-repeat: no-repeat;
}
}

@media(min-width: 680px) {
#landing-text {
	display: flex;
	justify-content: center;
	min-height: 50vh;
	text-align: center;
}

/* Necessary for what? */
#landing-text-inner {
	height: 50vh;
}
}

@media(max-width: 680px) {
#landing-text {
	display: flex;
	justify-content: center;
	min-height: 60vh;
	text-align: center;
}

/* Necessary for what? */
#landing-text-inner {
	height: 60vh;
}
}

#landing-text h1 {
	text-align: center;
}

#landing-text h2 {
	display: center;
	color: #888;
}

.btn {
	padding: 0.5rem 2rem;
	display: block;
	margin: 2rem 0rem 0rem;
	border: 1px #ccc solid;
	border-radius: 50px;
	font-size: 2em;
	color: #333;
	justify-content: center;
	transition: background 0.5s ease;
}

.btn:hover {
	background: #f4f4f4;
}

.BlogPost {
	min-height: 50vh;
}

.Header {
	padding: 1.5rem;
	text-align: center;
	background-color: #f8f8f8;
	border: 1px solid black;
}

.SubHeader {
	font-size: .6rem;
	text-align: center;
	padding: 1.2rem;
	background-color: lightblue;
	border: 1px solid black;
}

footer {
	  background-color: black;
		text-align: center;
		padding 2rem 1rem;
		margin: auto;
		color: white;
}

footer h3 {
		font-size: 3rem;
		margin-bottom: 0;
}

