/*
Tanvi G
Section B
css assignment
styles for web page about making yellow cake from scratch
9/25/19 
*/

#intro
{
	text-align: center;
	padding-top: 80px;
	padding-right: 25%;
	padding-left: 25%;
	/* #e6e6e6 is a light gray */
	background-image: radial-gradient(
      ellipse farthest-side,
      black, gray, #e6e6e6
    );
	color: white;
	height: 550px;
}

.left
{
	width: 25%;
}

.right
{
	width: 60%;
}

h1, h3
{
	text-decoration: underline;
	text-align: center;
	font-family: Georgia, Times, Times New Roman, serif;
}

div
{
	padding: 20px;
	margin: 20px;
	margin-bottom: 5px;
}


th
{
	text-align: left;
	width: 230px;
}

.indent
{
	text-indent: 15px;
	font-weight: normal;
}

img
{
	/* rounds out corners of image */
	border-radius: 10%;
}

hr
{
	border-color: white;
}

#container
{
	/* two div blocks can appear side by side */
	display: flex;  
	flex-wrap: wrap;
}

table
{
	margin-left: 10px;
}

body
{
	/* #e6e6e6 is light gray and #202020 is dark gray */
	background-color: #e6e6e6;
	color: #202020;
	font-size: 13pt;
}

#frost-cake
{
	padding-left: 30px;
	text-align: center;
}

#ingredients
{
	padding: 0;
	margin-right: 15px;
}

#link
{
	margin: 10px;
	margin-top: 0;
	padding: 10px;
	padding-top: 0;
}

li
{
	/* vertical space bewteen list items*/
	margin: 5px; 
}
