html, body{
	height: 100%;
}
.temp{
	text-align: center;
	justify-content: center;
	color: red;
	animation-name: example;
	animation-duration:4.5s;
	margin-top: 8%;
}
@keyframes example{
	0% {
		color: red;
	}
	25% {
		color: rgb(0, 255, 26);
	}
	50% {
		color: rgb(0, 255, 247);
	}
	75% {
		color: rgb(255, 0, 255);
	}
	100% {
		color: rgb(255, 0, 0);
	}
}
body{
	margin: 0;
	padding: 0;
	font-family: 'Piazzolla', serif;
}
#loading{
	position: fixed;
	width: 100%;
	height: 100vh;
	background: #fff url('rps.gif') no-repeat center ;
	z-index: 999;
}
header{
	width: 100%;
	height: 15%;
	padding-top: 25px;
	background-color: #97f5fa;
	box-sizing: border-box;
}
header h1{
	color: rgb(255, 73, 73);
	animation:extra 10s infinite;
	text-align: center;
	margin: 0;
}
@keyframes extra{
	0% {
		color: rgb(251, 63, 63);
	}
	25% {
		color: rgb(14, 194, 32);
	}
	50% {
		color: rgb(72, 66, 255);
	}
	75% {
		color: rgb(255, 72, 255);
	}
	100% {
		color: rgb(255, 63, 63);
	}
	
}
.container{
	position: relative;
	height: 85%;
	width: 100%;
	box-sizing: border-box;
	padding: 30px;
	background-color: #fff260;
}
.score-container{
	position: relative;
	margin: 0 auto;
	width: 150px;
	height: 40px;
	color: rgb(0, 0, 0);
}
#score{
	position: absolute;
	text-align: center;
	font-size: 30px;
	width: 100%;
}
.user{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(-50%, -50%);
	background-color: #ff2e2e;
	width: 47px;
	height: 25px;
	font-size: 15px;
	padding: 2px 10px;
	box-sizing: border-box;
}
.com{
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(50%, -50%);
	background-color: #ff2e2e;
	width: 47px;
	height: 25px;
	font-size: 15px;
	padding: 2px 10px 0px 6px;
	box-sizing: border-box;
}
.buttons{
	width: 280px;
	position: absolute;
	top: 20%; 
	left: 50%;
	transform: translateX(-50%);
}
.bn{
	width: 80px;
	height: 80px;
    margin :5px;
    border: 3px solid #000000;
    border-radius: 50%;
    color: #0381fe;
    font-size: 40px;
    background-color: rgb(254, 253, 185);
    cursor: pointer;
    outline: none;
    transition: .3s;
}
.bn:hover{
    background-color: #00eaffcc;
    border-color: white;
    color: white;
}
#challenge{
	position: absolute;
	top: 43%;
	left: 50%;
	transform: translateX(-50%);
	width: 540px;
	height: 40%;
	display: none;
}
#you{
	position: relative;
	width: 37.5%;
	font-size: 50px;
}
#com{
	position: relative;
	width: 37.5%;
	font-size: 50px;
}
#YourObject{
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 110px;
	height: 110px;
	font-size: 50px;
	padding-top: 20px;
	border: 3px solid #ff6600;
    border-radius: 50%;
    color: #1f8fff;
    background-color: white;
    box-sizing: border-box;
    text-align: center;
}
#ComObject{
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 110px;
	height: 110px;
	font-size: 50px;
	padding-top: 20px;
	border: 3px solid #ff6600;
    border-radius: 50%;
    color: #1f8fff;
    background-color: white;
    box-sizing: border-box;
    text-align: center;
}
#result{
	position: relative;
	width: 25%;
}
#result p{
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: rgb(0, 0, 0);
	font-size: 30px;
	width: 100%;
	margin: 0;
	text-align: center;
}
.who{
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
	color: rgb(0, 0, 0);
	font-size: 30px;
}
.green{
	width: 70px;
	height: 70px;
    margin: 5px;
    border: 3px solid rgb(0, 255, 0);
    box-shadow: 0 0 10px rgb(0, 255, 0);
    border-radius: 50%;
    color: #34495e;
    font-size: 35px;
    background-color: white;
    cursor: pointer;
    outline: none;
    transition: .3s;
}
.red{
	width: 70px;
	height: 70px;
    margin: 5px;
    border: 3px solid red;
    box-shadow: 0 0 10px red;
    border-radius: 50%;
    color: #34495e;
    font-size: 35px;
    background-color: white;
    cursor: pointer;
    outline: none;
    transition: .3s;
}
.gray{
	width: 70px;
	height: 70px;
    margin: 5px;
    border: 3px solid #fd01fd;
    box-shadow: 0 0 10px #292928;
    border-radius: 50%;
    color: #34495e;
    font-size: 35px;
    background-color: white;
    cursor: pointer;
    outline: none;
    transition: .3s;
}