@charset "UTF-8";
/* CSS Document */
/*Assignment 1 - Recipe for HTML & CSS*/
/*MAT165 Prof. Cleveland - MJ Tinling*/

body {
	margin: 0px 80px 0px 80px;
	font-family: Trebuchet MS, Verdana, sans-serif;
	font-size: 14px;
	line-height: 18px;
	color: #EAECD6;
	background-image: url("../images/Food/beigeSatinBackground.jpeg");
	background-position: center 800px;
}

a {
	color: #3F0B10;
	text-decoration: none;
}

#container {
	width: 850px;
	margin: 0 auto;
	position: relative;
	background-color: rgba(80,57,52,0.76);
	background-image: url("../images/Food/foodGeekFishBanner.png");
	background-repeat: no-repeat;
	background-size: contain;
	padding-top: 300px;
	padding-right: 25px;
	padding-bottom: 50px;
	padding-left: 25px;
}

h1 {
	margin: 75px 0 25px 0;
	font-family: 'Righteous', Georgia, Lucida Bright, Serif;
	font-weight: normal;
	font-size: 60px;
	letter-spacing: 2px;
	text-align: center;
	text-decoration-line: underline;
	text-shadow: 2px 2px 4px #3F0B10;
}

.Byline {
	text-align: center;
	font-size: 14px;
	font-style: italic;
	margin-top: 35px;
	margin-bottom: 20px;
}

.Byline a:hover {
	color: #EAECD6;
	text-decoration: underline;
}

.Subline {
	text-align: center;
	font-size: 12px;
	line-height: 0.5em;
	margin-bottom: 10px;
}

p {
	margin-left: 80px;
	margin-right: 80px;
}

h2 {
	font-family: 'Righteous', Georgia, Lucida Bright, Serif;
	font-weight: normal;
	font-size: 36px;
	letter-spacing: 2px;
	text-align: center;
	text-shadow: 2px 2px 4px #3F0B10;
}

#ingredients2 {
	display: block;
	border: solid;
	border-width: thick;
	border-color: #3F0B10;
	border-radius: 10px 10px 10px 10px;
	align-content: center;
	margin-top: 25px;
	margin-right: auto;
	margin-left: auto;
}

.two-column-layout {
	display: grid;
	margin-left: 50px;
	grid-template-columns: 350px 350px;
	justify-content: center;
}

h3 {
	margin-bottom: 0px;
	color: #3F0B10;
	text-transform: uppercase;
}

ul {
	margin-top: 6px;
	list-style-image: url("../images/Food/spoonBullet2.png");
}

.steps {
	font-size: 20px;
	margin-left: 80px;
	margin-bottom: 0px;
	padding-top: 15px;
	text-transform: uppercase;
}

ol {
	margin-top: 12px;
	margin-left: 80px;
	margin-right: 80px;
}

figure {
	margin-left: -3px;
	margin-right: 0px;
}

#wetSandStage {
	display: block;
	border: solid;
	border-width: thick;
	border-color: #3F0B10;
	border-radius: 10px 10px 10px 10px;
	float: right;
	margin-top: 0px;
	margin-bottom: 5px;
	margin-left: 20px;
}

#choppedChocolate {
	display: block;
	border: solid;
	border-width: thick;
	border-color: #3F0B10;
	border-radius: 10px 10px 10px 10px;
	float: right;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 20px;
}

#eggsAndChocolate {
	display: block;
	border: solid;
	border-width: thick;
	border-color: #3F0B10;
	border-radius: 10px 10px 10px 10px;
	float: left;
	margin: 0px 40px 0px 0px;
}

#spreadGlaze {
	display: block;
	border: solid;
	border-width: thick;
	border-color: #3F0B10;
	border-radius: 10px 10px 10px 10px;
	float: right;
	margin-top: 0px;
	margin-bottom: 5px;
	margin-left: 20px;
}

#finishCutCake {
	display: block;
	border: solid;
	border-width: thick;
	border-color: #3F0B10;
	border-radius: 50px 50px 10px 10px;
	align-content: center;
	margin-top: 43px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: 193px;
	
}

.slice {
	margin-top: 55px;
	margin-bottom: 0px;
	
}

footer {
	font-size: 16px;
	font-style: italic;
	margin-top: 50px;
	margin-bottom: 20px;
}

/* nav {          <------ not necessary
	text-align: center;
	padding: 5px 5px 5px 5px;
	
} */

nav ul {
	list-style-image: none;
}

nav ul li {
	display: inline-block;
	padding: 0px 75px;
	border-right: 2px solid #EAECD6;
}

nav ul li:last-child {
	border-right: none;
}

nav a:hover {
	color: #EAECD6;
	text-decoration: underline;
}

.sign-off {
	color: #3F0B10;
	font-size: 12px;
	text-align: center;
	background-color: #EAECD6;
	margin-top: 65px;
	border:thick;
	border-color: #EAECD6;
	border-radius: 2px 2px 2px 2px;
}

/* stuff tried and did not work
* {
	box-sizing:border-box;
	
}

.heading {
	text-align: center;
}

.columns {
    float: left;
    width: 50%;
    padding: 12px 12px 12px 12px;
    min-height: 300px;
}

.rows:after {
	content: "";
	display:table;
	clear:both;
}