/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}





/* General Styles */

h1 {
  font-size: 150%;
  margin: 5%;
}

h2 {
  font-size: 125%;
  margin: 3%;
}

body {
  font-family: Helvetica, Arial, sans-serif;
}



.welcome {
  margin: auto;
  width: 800px;
  text-align: center;
}


.choice {
  display: inline-block;
  padding: 30px 10px;
  border: 2px solid black;
  margin: 0 5px;
  background-color: #eee;
  width: 100px;
  font-size: 1.2rem;
  text-align: center;
  transition: all .05s ease;
  color: white;
}

.clicked {
  transform: scale(1.1);
  border-color: #ffc600;
  box-shadow: 0 0 1rem #ffc600;
}

.choice:hover {
  cursor: pointer;
}

.controls {
  margin: auto;
  width: 600px;
  text-align: center;
}

#new-game-btn {
  margin: auto;
  font-size: 1.5em;
  border-radius: .5em;
  border: 1px solid #444444;
  transition: all .05s ease;
  text-align: center;
  width: 150px;
  background-color: #4285F4;
  color: #fff;
}

.summary {
  text-align: center;
}

.summary h3, .summary p{
  margin: 45px 0 5px 0;
  display: inline-block;
  width: 49%;
  font-size: 300%;
}


.game {
  width: 500px;
  /* margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  margin-top: 100px */
  margin: 50px auto 10px auto;
  text-align: center;
}

button:hover {
  cursor: pointer;
}

#rock {
  background-color: #0F9D58;
}

#paper {
  background-color: #F4B400;
}

#scissors {
  background-color: #DB4437;
}

button:focus {
  outline: none;
}

#player-score {
  color: #666;
  font-size: 500%;
}

#computer-score {
  color: #666;
  font-size: 500%;
}
