
body {
	display: flex;
	justify-content: center;
}

#frame {
	width: 80vw;
	border-radius: 8px;
	box-shadow: 0px 1px 5px -2px gray;
	padding: 16px;
	font-size: 130%;
}

.panel {
	border-radius: inherit;
	box-shadow: inherit;
	padding: 32px;
	margin: 10px;
}

#story {
	overflow-x: auto;
}

#old {
	font-weight: 600;
}

.hint {
	font-size: 60%;
}

#input_container {
	display: flex;
	align-items: center;
	/*justify-content: space-around;*/
}

input {
	font-size: inherit;
	width:  100%;
	margin: 0px;
	margin-right: 3px;
}

#ok {
	margin: 0px;
	/*height: 1.5em;*/
}

/*#ok:not(:hover) {
	background-color: #475c4d;
	border-color: transparent;
}*/

#players {
	margin: -8px;
}

button {
	background-color: #475c4d;
	border-color: transparent;
	font-size: 90%;
	padding-left: 10px;
	padding-right: 10px;
	margin: 8px;
}

button:active {
	position: relative;
	bottom: -3px;
}

.voting_button {
  font-size: .6em;
  margin: 0px;
  margin-left: 5px;
}

#you:not(:hover) {
	color: #6cbb4f;
	border-color: #6cbb4f;
	box-shadow: 0 0 0 0 #6cbb4f;
}

.player:not(:hover) {
	color: #4b89d8;
	border-color: #4b89d8;
	box-shadow: 0 0 0 0 #4b89d8;
	opacity: 50%;
}

.player.alive {
	opacity: 100%;
}

.pulse {
	animation: 1s animation1;
}
@keyframes animation1 {
  50% {
    box-shadow: 0 0 4px 1px;
  }
}

.hidden {
	display: none;
}
