﻿@charset "UTF-8";

.unclick{
	pointer-events: none;
}

.game-display {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	height: 100vh;
	width: 100%;

	position: relative;
}

.game-charactor{
	position: absolute;
	bottom: 0;
	
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
	
	height: 100vh; 
}

.story-box {
	background: rgba(0,0,0,0.5);
	height: 16vh;

	position: absolute;
	bottom: 2%;
	width: 91%;
}

.text {
	color: #ffffff;
	font-size: 1.5em;
	padding: 20px;
}

button {
	padding: 0;
	font-family: inherit;
	appearance: none;
	cursor: pointer;
	background-color: transparent;
	border: none;
}

.choice {
	position: absolute;
	top: 30%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;

	display:flex;
	flex-flow: column;
	height:300px;
	margin:0 0 1em;
}

.choice button {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin: 0.5em 0.5em;
	padding: 1em 1.5em;
	width: 300px;
	color: #2e2e2e;
	font-size: 18px;
	font-weight: 700;
	background-color: #ffffff;
	border: 3px solid #3db8ff;
	transition: 0.3s;
}

.choice button:hover {
  /* text-decoration: none; */
  color: #ffffff;
  background-color: #3db8ff;
border: 3px solid #ffffff;

}