/*
Name: Rafael Bayer
TA: Derek Chiu
Assignment: CP3

This is the style.css file for cp3, it has style information for homepage.html
*/
body {
	color: white;
	font-size: 25px;
	background-image: url("rpsBackground.gif");
	background-size: 150px 150px;
	background-repeat: repeat;
}

main {
	background-color: gray;
	margin: auto;
	text-align: center;
	padding: 50px;
	width: 70%;
	box-shadow: 0px 10px 10px 10px black;
}

em {
	font-style: italic;
	text-decoration: underline;
}

/*Section contains images that show player and computer choice*/
#images {
	display: flex;
	justify-content: space-between;

}

#images img {
	width: 200px;
	height: 150px;
	border: solid red 5px;
	background-color: white;
}