.rock-paper-scissor {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-image: url(../img/rock-paper-scissor/background.png);
	background-size: 100% 100%;
	background-position: center;
	width: 100%;
	height: 1300px;
}

.rock-paper-scissor > .TopContainer {
	display: flex;
	flex-direction: row;
	width: 80%;
}

.rock-paper-scissor > .TopContainer > .title {
	font-family: KozGoPr6N-Regular;
	font-size: 103px;
	line-height: 100px;
	color: #ffff00;
	margin-right: 0%;
	margin-top: 80px;
	width: 60%;
	-webkit-filter: drop-shadow(4px 0px 4px #000);
	filter: drop-shadow(4px 0px 4px #000);
	will-change: filter;
	-moz-filter: drop-shadow(4px 0px 4px #000);
}

.rock-paper-scissor > .TopContainer > .subText {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin-bottom: -10px;
	width: 40%;
	justify-content: flex-end;
}

.rock-paper-scissor > .TopContainer > .subText > .text1 {
	font-family: ShinGo-Medium;
	font-size: 25px;
	line-height: 35.22px;
	letter-spacing: 1.5px;
	color: #ffffff;
	text-align: right;
	font-weight: 500;
}

.rock-paper-scissor > .instruction {
	display: flex;
	width: 80%;
	margin-top: 50px;
}

.rock-paper-scissor > .instruction > .content {
	font-family: ShinGo-Medium;
	font-size: 14px;
	line-height: 21px;
	letter-spacing: 1.26px;
	color: #ffffff;
}

.rock-paper-scissor > .instruction > .content > .highlight {
	color: #ffff00;
}

.rock-paper-scissor > .emailForm {
	width: 100%;
	height: auto;
	padding: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.rock-paper-scissor > .emailForm > .txt {
	font-family: HelveticaNeue;
	font-size: 22px;
	color: #ffffff;
	color: rgb(255, 255, 255);
	text-align: center;
}

.rock-paper-scissor > .emailForm > .email {
	background-image: url(../img/rock-paper-scissor/emailBox.png);
	background-size: 100% 100%;
	width: 380px;
	background-repeat: no-repeat;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rock-paper-scissor > .emailForm > .email input[type="email"] {
	width: 100%;
	outline: none;
	background-color: transparent;
	border: none;
	border-width: 0;
	box-shadow: none;
	text-align: center;
	font-family: KozGoPr6N-Medium;
}

.rock-paper-scissor > .rps {
	height: 700px;
	width: 800px;
	margin-top: 50px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.rock-paper-scissor > .rps > .spotLight {
	background-image: url(../img/rock-paper-scissor/spot_light.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	width: 116%;
	height: 802px;
	position: absolute;
	top: -20%;
	left: -8%;
	filter: brightness(1.12);
}

.rock-paper-scissor > .rps > .items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 70px;
	justify-items: center;
	filter: drop-shadow(50px 20px 40px #000);
	will-change: filter;
	-moz-filter: drop-shadow(50px 20px 40px #000);
	-webkit-filter: drop-shadow(50px 20px 40px #000);
}

.rock-paper-scissor > .rps > .items > .rock {
	grid-column: 2/2;
	grid-row: 1/4;
	background-image: url(../img/rock-paper-scissor/rock.png);
	background-position: center;
	background-size: 100% 100%;
	height: 210px;
	width: 210px;
	background-repeat: no-repeat;
	cursor: pointer;
}

.rock-paper-scissor > .rps > .items > .paper {
	grid-column: 1/1;
	grid-row: 2/5;
	background-image: url(../img/rock-paper-scissor/paper.png);
	background-position: center;
	background-size: 100% 100%;
	height: 210px;
	width: 210px;
	background-repeat: no-repeat;
	cursor: pointer;
}

.rock-paper-scissor > .rps > .items > .scissor {
	grid-column: 3/3;
	grid-row: 2/5;
	background-image: url(../img/rock-paper-scissor/scissor.png);
	background-position: center;
	background-size: 100% 100%;
	height: 210px;
	width: 210px;
	background-repeat: no-repeat;
	cursor: pointer;
}

.rock-paper-scissor > .rps > .items > .txtVs {
	grid-column: 2/2;
	grid-row: 4/5;
	font-family: KozGoPr6N-Bold;
	font-size: 60px;
	line-height: 150.72px;
	color: #fefefe;
}

.rock-paper-scissor > .rps > .items > .result {
	grid-column: 2/2;
	grid-row: 6/10;
	background-image: url(../img/rock-paper-scissor/result_box.png);
	background-position: center;
	background-size: 100% 100%;
	height: 210px;
	width: 210px;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rock-paper-scissor > .rps > .items > .result > .select {
	background-position: center;
	background-size: 100% 100%;
	height: 210px;
	width: 210px;
	background-repeat: no-repeat;
	background-image: url(../img/rock-paper-scissor/rock.png);
	filter: drop-shadow(1px 5px 5px #000);
	will-change: filter;
	-moz-filter: drop-shadow(1px 5px 5px #000);
	-webkit-filter: drop-shadow(1px 5px 5px #000);
}

.result-modal {
	display: none;
	position: fixed;
	z-index: 2;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	transition: all 5s linear;
}

.result-content {
	background-color: #fff1bc00;
	margin: auto;
	margin-top: 15%;
	padding: 20px;
	width: min-content;
	position: relative;
}

.result-body {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 20px;
}

.result-body img {
	width: 350px;
	height: 350px;
	filter: drop-shadow(50px 20px 40px #000);
	will-change: filter;
	-moz-filter: drop-shadow(50px 20px 40px #000);
	-webkit-filter: drop-shadow(50px 20px 40px #000);
}

.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

@keyframes showResult {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes scale {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}
@keyframes scaleP {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(10deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

@keyframes hidePopup {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes showPopup {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@media (max-width: 800px) {
	.rock-paper-scissor > .TopContainer > .title {
		font-family: KozGoPr6N-Regular;
		font-size: 43px;
		line-height: 40px;
		color: #ffff00;
		margin-right: 0%;
		margin-top: 50px;
	}

	.rock-paper-scissor > .TopContainer > .subText {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		margin-top: 20px;
		margin-bottom: 0px;
		width: 100%;
		justify-content: flex-end;
	}

	.rock-paper-scissor > .TopContainer > .subText > .text1 {
		font-family: ShinGo-Medium;
		font-size: 16px;
		line-height: 25.22px;
		letter-spacing: 1.5px;
		color: #ffffff;
		text-align: right;
		font-weight: 500;
	}
}

@media (max-width: 640px) and (min-width: 460.1px) {
	.rock-paper-scissor {
		display: flex;
		flex-direction: column;
		align-items: center;
		background-image: url(../img/rock-paper-scissor/background.png);
		background-size: 100% 100%;
		background-position: center;
		width: 100%;
		height: 800px;
	}

	.rock-paper-scissor > .TopContainer {
		display: flex;
		flex-direction: row;
		width: 85%;
	}

	.rock-paper-scissor > .TopContainer > .title {
		font-family: KozGoPr6N-Regular;
		font-size: 43px;
		line-height: 40px;
		color: #ffff00;
		margin-right: 0%;
		margin-top: 50px;
		width: 50%;
	}

	.rock-paper-scissor > .TopContainer > .subText {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		margin-bottom: -60px;
		width: 50%;
		justify-content: flex-end;
		margin-top: 20px;
	}

	.rock-paper-scissor > .TopContainer > .subText > .text1 {
		font-family: ShinGo-Medium;
		font-size: 16px;
		line-height: 25.22px;
		letter-spacing: 1.5px;
		color: #ffffff;
		text-align: right;
		font-weight: 500;
	}

	.rock-paper-scissor > .instruction {
		display: flex;
		width: 80%;
		margin-top: 40px;
	}

	.rock-paper-scissor > .instruction > .content {
		font-family: ShinGo-Medium;
		font-size: 12px;
		line-height: 18px;
		letter-spacing: 1.26px;
		color: #ffffff;
	}

	.rock-paper-scissor > .instruction > .content > .highlight {
		color: #ffff00;
	}

	.rock-paper-scissor > .emailForm {
		width: 100%;
		height: auto;
		padding: 10px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		z-index: 1;
	}

	.rock-paper-scissor > .emailForm > .txt {
		font-family: HelveticaNeue;
		font-size: 20px;
		color: #ffffff;
		text-align: center;
	}

	.rock-paper-scissor > .emailForm > .email {
		background-image: url(../img/rock-paper-scissor/emailBox.png);
		background-size: 100% 100%;
		width: 380px;
		background-repeat: no-repeat;
		padding: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.rock-paper-scissor > .emailForm > .email input[type="email"] {
		width: 100%;
		outline: none;
		background-color: transparent;
		border: none;
		border-width: 0;
		box-shadow: none;
		text-align: center;
		font-size: 16px;
		font-family: KozGoPr6N-Medium;
	}

	.rock-paper-scissor > .rps {
		height: 450px;
		width: 100%;
		margin-top: 0px;
		margin-bottom: 50px;
		position: relative;
		display: flex;
		justify-content: center;
	}

	.rock-paper-scissor > .rps > .spotLight {
		background-image: url(../img/rock-paper-scissor/spot_light.png);
		background-size: 100% 100%;
		background-repeat: no-repeat;
		background-position: center;
		width: 100%;
		height: 400px;
		position: absolute;
		top: 17%;
		left: 0%;
	}

	.rock-paper-scissor > .rps > .items {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: 30px;
		justify-items: center;
		filter: drop-shadow(50px 20px 40px #000);
		will-change: filter;
		-moz-filter: drop-shadow(50px 20px 40px #000);
		-webkit-filter: drop-shadow(50px 20px 40px #000);
	}

	.rock-paper-scissor > .rps > .items > .rock {
		grid-column: 2/2;
		grid-row: 1/4;
		background-image: url(../img/rock-paper-scissor/rock.png);
		background-position: center;
		background-size: 100% 100%;
		height: 140px;
		width: 140px;
		background-repeat: no-repeat;
		cursor: pointer;
	}

	.rock-paper-scissor > .rps > .items > .paper {
		grid-column: 1/1;
		grid-row: 3/6;
		background-image: url(../img/rock-paper-scissor/paper.png);
		background-position: center;
		background-size: 100% 100%;
		height: 140px;
		width: 140px;
		background-repeat: no-repeat;
		cursor: pointer;
	}

	.rock-paper-scissor > .rps > .items > .scissor {
		grid-column: 3/3;
		grid-row: 3/6;
		background-image: url(../img/rock-paper-scissor/scissor.png);
		background-position: center;
		background-size: 100% 100%;
		height: 140px;
		width: 140px;
		background-repeat: no-repeat;
		cursor: pointer;
	}

	.rock-paper-scissor > .rps > .items > .txtVs {
		grid-column: 2/2;
		grid-row: 5/9;
		font-family: KozGoPr6N-Bold;
		font-size: 40px;
		line-height: 150.72px;
		color: #fefefe;
	}

	.rock-paper-scissor > .rps > .items > .result {
		grid-column: 2/2;
		grid-row: 9/12;
		background-image: url(../img/rock-paper-scissor/result_box.png);
		background-position: center;
		background-size: 100% 100%;
		height: 140px;
		width: 140px;
		background-repeat: no-repeat;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.rock-paper-scissor > .rps > .items > .result > .select {
		background-position: center;
		background-size: 100% 100%;
		height: 140px;
		width: 140px;
		background-repeat: no-repeat;
		background-image: url(../img/rock-paper-scissor/rock.png);
		filter: drop-shadow(1px 5px 5px #000);
		will-change: filter;
		-moz-filter: drop-shadow(1px 5px 5px #000);
		-webkit-filter: drop-shadow(1px 5px 5px #000);
	}
}

@media (max-width: 460px) {
	.rock-paper-scissor {
		display: flex;
		flex-direction: column;
		align-items: center;
		background-image: url(../img/rock-paper-scissor/background.png);
		background-size: 100% 100%;
		background-position: center;
		width: 100%;
		height: 700px;
	}

	.rock-paper-scissor > .TopContainer {
		display: flex;
		flex-direction: column;
		width: 90%;
	}

	.rock-paper-scissor > .TopContainer > .title {
		font-family: KozGoPr6N-Regular;
		font-size: 43px;
		line-height: 40px;
		color: #ffff00;
		margin-right: 0%;
		margin-top: 50px;
		width: 100%;
	}

	.rock-paper-scissor > .TopContainer > .subText {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		margin-top: -20px;
		margin-bottom: 0px;
		width: 100%;
		justify-content: flex-end;
		margin-top: 20px;
	}

	.rock-paper-scissor > .TopContainer > .subText > .text1 {
		font-family: ShinGo-Medium;
		font-size: 12px;
		line-height: 21.22px;
		letter-spacing: 1.5px;
		color: #ffffff;
		text-align: right;
		font-weight: 500;
	}

	.rock-paper-scissor > .instruction {
		display: flex;
		width: 80%;
		margin-top: 0px;
	}

	.rock-paper-scissor > .instruction > .content {
		font-family: ShinGo-Medium;
		font-size: 12px;
		line-height: 18px;
		letter-spacing: 1.26px;
		color: #ffffff;
	}

	.rock-paper-scissor > .instruction > .content > .highlight {
		color: #ffff00;
	}

	.rock-paper-scissor > .emailForm {
		width: 100%;
		height: auto;
		padding: 10px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		z-index: 1;
	}

	.rock-paper-scissor > .emailForm > .txt {
		font-family: HelveticaNeue;
		font-size: 16px;
		color: #ffffff;
		text-align: center;
	}

	.rock-paper-scissor > .emailForm > .email {
		background-image: url(../img/rock-paper-scissor/emailBox.png);
		background-size: 100% 100%;
		width: 80%;
		background-repeat: no-repeat;
		padding: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.rock-paper-scissor > .emailForm > .email input[type="email"] {
		width: 100%;
		outline: none;
		background-color: transparent;
		border: none;
		border-width: 0;
		box-shadow: none;
		text-align: center;
		font-size: 14px;
		font-family: KozGoPr6N-Medium;
	}

	.rock-paper-scissor > .rps {
		height: 340px;
		width: 100%;
		margin-top: 0px;
		margin-bottom: 20px;
		position: relative;
		display: flex;
		justify-content: center;
	}

	.rock-paper-scissor > .rps > .spotLight {
		background-image: url(../img/rock-paper-scissor/spot_light.png);
		background-size: 100% 100%;
		background-repeat: no-repeat;
		background-position: center;
		width: 100%;
		height: 340px;
		position: absolute;
		top: 3%;
		left: 0%;
	}

	.rock-paper-scissor > .rps > .items {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: 20px;
		justify-items: center;
		filter: drop-shadow(50px 20px 40px #000);
		will-change: filter;
		-moz-filter: drop-shadow(50px 20px 40px #000);
		-webkit-filter: drop-shadow(50px 20px 40px #000);
	}

	.rock-paper-scissor > .rps > .items > .rock {
		grid-column: 2/2;
		grid-row: 1/4;
		background-image: url(../img/rock-paper-scissor/rock.png);
		background-position: center;
		background-size: 100% 100%;
		height: 100px;
		width: 100px;
		background-repeat: no-repeat;
		cursor: pointer;
	}

	.rock-paper-scissor > .rps > .items > .paper {
		grid-column: 1/1;
		grid-row: 3/6;
		background-image: url(../img/rock-paper-scissor/paper.png);
		background-position: center;
		background-size: 100% 100%;
		height: 100px;
		width: 100px;
		background-repeat: no-repeat;
		cursor: pointer;
	}

	.rock-paper-scissor > .rps > .items > .scissor {
		grid-column: 3/3;
		grid-row: 3/6;
		background-image: url(../img/rock-paper-scissor/scissor.png);
		background-position: center;
		background-size: 100% 100%;
		height: 100px;
		width: 100px;
		background-repeat: no-repeat;
		cursor: pointer;
	}

	.rock-paper-scissor > .rps > .items > .txtVs {
		grid-column: 2/2;
		grid-row: 4/5;
		font-family: KozGoPr6N-Bold;
		font-size: 40px;
		line-height: 150.72px;
		color: #fefefe;
	}

	.rock-paper-scissor > .rps > .items > .result {
		grid-column: 2/2;
		grid-row: 9/12;
		background-image: url(../img/rock-paper-scissor/result_box.png);
		background-position: center;
		background-size: 100% 100%;
		height: 100px;
		width: 100px;
		background-repeat: no-repeat;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.rock-paper-scissor > .rps > .items > .result > .select {
		background-position: center;
		background-size: 100% 100%;
		height: 100px;
		width: 100px;
		background-repeat: no-repeat;
		background-image: url(../img/rock-paper-scissor/rock.png);
		filter: drop-shadow(1px 5px 5px #000);
		will-change: filter;
		-moz-filter: drop-shadow(1px 5px 5px #000);
		-webkit-filter: drop-shadow(1px 5px 5px #000);
	}

	.result-content {
		background-color: #fff1bc00;
		margin: auto;
		margin-top: 15%;
		padding: 10px;
		width: min-content;
		position: relative;
	}

	.result-body img {
		width: 250px;
		height: 250px;
	}
}

#rpsStart {
	margin-top: 0;
	margin-bottom: 30px;
}
