@charset "utf-8";
/* CSS Document */

html {
	padding-left: 20px;
    background-color: black;
    color: white;
}

#player {
	border: solid white 4px;
	padding: 30px;
	float: left;
	margin-right: 20px;
    background-color: white;
    color: blue;
}

#player h3 {
	position: relative;
	top: -45px;
	left: -25px;
}

#computer {
	border: solid white 4px;
	padding: 30px;
	display: table-cell;
	clear: both;
    background-color: white;
    color: orange;
}

#computer h3 {
	position: relative;
	top: -45px;
	left: -25px;
}

button {
	margin-top: 15px;
}

#notices {
    border: solid white 4px;
    color: grey;
    margin-top: 30px;
    width: 600px;
}
