.instructions_main {
	flex: 7 1 0;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}
.instructions_main:hover > .illustration_main_buttons {
	display: flex;
	z-index: 2;
}
.instructions_main:hover > .instructions_full_screen {
	display: flex;
	z-index: 2;
}

.instructions_container_image {
	display: flex;
	flex-direction: row;
	justify-content: center;
	position: absolute;
	height: 100%;
	width: 100%;
}

.instructions_main_image {
	width: 100%;
	height: auto;
	opacity: 0;
	position: absolute;
	transition: opacity .5s ease-in-out;
	background-color: var(--color-background-button);
}

.instructions_thumbnail {
	object-fit: scale-down;
	max-height: 200px;
}

.instructions_full_screen {
	position: absolute;
	top: 0px;
	right: 0px;
	display: none;
	-webkit-box-align: center;
	align-items: center;
	flex-direction: column;
	font-size: 0.875rem;
	line-height: 1.1875rem;
	color: var(--color-border3);
	z-index: 1;
	-webkit-appearance: button;
	overflow: visible;
	font-family: inherit;
	margin: 0;
	border: 0;
	padding: 10px;
	background: transparent;
	box-shadow: none;
	font: inherit;
	box-sizing: inherit;
	transition: display .5s ease;
}
.instructions_full_screen:hover {
	cursor: pointer;
}

.instructions_full_screen_logo {
	display: flex;
	padding: 0.625rem;
	border-radius: 50%;
	background: var(--color-background-button);
}

.keyboard_shortcuts {
	max-width: var(--maxWidth);
	width: 90%;
	padding: 20px;
}

.keyboard_shortcuts_grid {
	display: grid;
	grid-template-columns: auto auto auto;
	grid-gap: 10px;
}
.keyboard_shortcuts_grid > div {
	text-align: center;
}

.keyboard_text_second {
	color: var(--color-border3);
	font-size: 0.8rem;
	margin-left: 0.5rem;
}
.keyboard_text_second:hover {
	cursor: pointer;
}