* {
	margin: 0;
	padding: 0;
	font-weight: bold;
}

audio {
	border-radius: 1.25rem;
}

html, body {
	background-color: white;
	margin: 0px 20px;
	padding: 0;
	height: 100%;
	color: black;
}

/* unvisited link */
a:link {
	color: black;
	text-decoration: none;
}

/* visited link */
a:visited {
	color: black;
}

/* mouse over link */
a:hover {
	color: rgb(247, 51, 91);
}

/* selected link */
a:active {
	color: grey;
}

p {
	line-height: 1.6em;
/*	font-size: 1.2em;*/
/*	letter-spacing: 0.025em;*/
}

h1 {
	line-height: 1.6em;
	font-size: 3em;
/*	letter-spacing: 0.025em;*/
}

#back-button {
	position: absolute;
	top: 10px;
	left: 40px;
	width: 30px;
	height: 20px;
}

p span {
	padding: 1px 5px;
	background-color: white;
	color: black;
	border-radius: 4px;
}

#rorschach_test {
	text-align: center;
}

#rorschach_test video {
	height: 80vh;
	width: auto;
}

#monkey_see {
	text-align: center;
}

#monkey_see video {
	height: auto;
	width: 80vw;
}


#mischief_systems {
/*	display: flex;*/
/*	flex-direction: column;*/
/*	outline: 10px solid red;*/
text-align: center;
}

#mischief_systems:after {
	content: " ";
	position: relative;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99;
}

#mischief_systems img {
	width: 70vw;
	height: auto;	
}

.logo {
	display: flex;
	width: 200%;
}

.logo {
	gap: 20px;
}

.logo img {
	height: 30px;
}

.article {
	display: flex;
	width: 400px;
	justify-content: space-between;
}

.button-row {
	display: flex;
	flex-direction: row;
	gap: 6px;
}

.button {
	display: flex;
	justify-content: center;
	flex-direction: column;
	appearance: none;
	background-color: black;
	border: 2px solid white;
	border-radius: 20px;
	height: 32px;
	width: 170px;
	box-sizing: border-box;
	color: white;
	cursor: pointer;
	font-size: 1.1em;
	margin: 0;
	padding: 0px 12px;
	text-align: center;
	text-decoration: none;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	will-change: transform;
	
	background: linear-gradient(to left, black 50%, white 50%);
	background-size: 200% 100%;
	background-position:right bottom;
	transition: all 200ms cubic-bezier(.5, 1, 0.5, 1);
}

.button:disabled {
	pointer-events: none;
}

.button:hover {
/*			box-shadow: rgba(1, 1, 1, 0.25) 0 8px 15px;*/
/*			transform: translateY(-2px);*/
background-position:left bottom;
color:black;
}

.button:active {
	box-shadow: none;
	transform: translateY(0);
}