
:root {
  --background-image: url('/resources/background-tileable.jpg');
  --background: #024;
  --text: #3CF;
  --highlight: #FFF;
}

@media (max-width: 1200px) {
	#app {
		display: none;
	}
	#mobileWarning {
		display: block;
	}
}

@media (min-width: 1200px) {
	#app {
		display: block;
	}
	#mobileWarning {
		display: none;
	}
}

body {
	font-family: serif;
	font-size: 20px;

	background: var(--background-image);
	background-blend-mode: multiply;
  background-size: 100%;

	margin: 0px;
	color: var(--text);
	background-color: var(--background);

	user-select: none;
}

/* added much later, fade in on load */
body {
	animation: fadeInAnimation ease 3s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/* back to original stuff */


#container {
	margin: 15px;
	display: flex;
	flex-flow: row;
	height: calc(100vh - 30px);
	width: calc(100vw - 30px);
}

#sideBar {
	display: flex;
	flex-flow: column;

	overflow-y: hidden;
	width: 300px;
}

#mainSection {
	display: flex;
	flex-flow: column;

	flex: 1 1;

	margin-left: 15px;
	overflow-y: auto;
	height: 100%;
}

#textLog {
	display: flex;
	flex-flow: column;
}

#bottomGap {
	min-height: 100px;
}

.line {
	text-align: left;
}

.option {
	text-align: left;
	padding-left: 80px;
}

.option.active:hover, #deleteSaveButton:hover {
	color: var(--highlight);
}

.flexGap {
	flex: 1 1;
}

.bold {
	font-weight: bold;
	color: var(--highlight);
}

#inventorySection {
	display: flex;
	flex-direction: column;
}

#injuriesSection {
	display: flex;
	flex-direction: column;
}

#attemptsSection {
	display: flex;
	flex-direction: column;
}

#saveManagementSection {
	display: flex;
	flex-direction: column;

	text-align: right;
}

#controlsSection {
	display: flex;
	flex-direction: column;
}

#mainPageLink {
	color: var(--text);
	text-decoration: none;
	cursor: default;
}

#mainPageLink:hover {
	color: var(--highlight);
}