* {
	margin: 0;
	padding: 0;
}

header {
	width: 100%;
	background-color: white;
	text-align: center;
	padding: 30px 0px 30px;
}
body {
	background-color: black;
}
header img{
	position: absolute;
	left: 30px;
}
.scoreboard {
	color: white;
	border: 1px solid white;
	margin: 20px auto;
	border-radius: 4px;
	text-align: center;
	font-size: 46px;
	padding: 15px 20px;
	width: 200px;
	position: relative;
}
.badge {
	background-color: red;
	color: white;
	font-size: 14px;
	padding: 2px 10px;
}
.button-container {
    display: flex;
    justify-content: center; 
    gap: 20px; 
    margin-top: 5%; 
}

button {
    height: 45px;
    width: 100px;
    background-color: lightblue;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

button:hover {
    background-color: #add8e6; 
}

#user-label {
	position: absolute;
	top: 30px;
	left: -25px;
}
#comp-label {
	position: absolute;
	top: 30px;
	right: -25px; 
}
#roundCount{
	position: absolute;
	bottom: -10px;
	left: 105px;
	width: 15px;
	height: 18px;
}
.results {
	color: white;
	text-align: center;
	padding: 30px 0px 30px;
	font-size: 24px;
}
.choices {
	display: flex;
	justify-content: space-between;
	padding: 0 2% 0 2%;
}
.choice-rock{
	display: inline-block; 
}
.choice-paper{
	display: inline-block; 
}
.choice-scissors{
	display: inline-block; 
}
#action-message {
	color: white;
	text-align: center;
}
#action-message {
	font-size: 24px;
	padding: 30px;
}
img:hover {
	cursor: pointer;
}