/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
:root {
  --game-size-width: 800px;
  --game-size-height: 600px;
  --game-background: rgba(206, 135, 64, 0.9);

  --game-element-width: 40px;
  --game-element-height: 40px;
  --game-element-size: 40px;

  --tree-background: rgba(128, 26, 0, 0.5);
  --water-background:  rgba(0, 0, 139, 0.5);
  --mountain-background: rgba(128, 128, 128, 0.5);
}
/*
  GAME MAP
*/

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(assets/images/ca6fd01586006b005b319ba09616b091.gif);
  background-repeat: repeat;
  padding: 60px;
}

.game-description {
  background: darkblue;
  color: white;
  font-size: 20px;
  padding: 20px;
  margin: 20px;
}

.game-title {
  font-size: 50px;
  font-weight: bold;
  color:greenyellow;
  background: black;
  padding: 20px;
  border-radius: 10px;
}

.game-area {
  width: var(--game-size-width);
  height: var(--game-size-height);
  background-color: var(--game-background);
  position: relative;
  border: 10px solid red;
}

.forest-game-prompt,
.game-prompt {
  font-size: 20px;
  color: lightblue;
  z-index: 2;
  padding: 0 20px 20px;
  background: darkgoldenrod;
  border: 5px solid lightblue;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.forest-game-prompt {
  padding: 20px;
}

.forest-game-prompt__text,
.game-prompt__text,
.game-prompt__action {
  margin: 20px;
}

.mountain-option,
.game-prompt__action {
  display: inline-block;
  cursor: pointer;
  font-size: 20px;
  background: lightblue;
  color: black;
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
  border: none;
  outline: none;
}

.game-element,
.player p {
  width: var(--game-element-width);
  height: var(--game-element-height);
  font-size: var(--game-element-size);
  position: absolute;
}

.player {
  z-index: 1;
}

.tree {
  background: var(--tree-background);
}

.water {
  background: var(--water-background);
}

.mountain {
  background: var(--mountain-background);
}

/*
  FOREST
*/

.webgl {
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
}

.mountain-game {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mountain-game-wrapper {
  width: 800px;
  height: 600px;
  background: sienna;
}

.mountain-text-area {
  background: black;
  border: 5px solid red;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mountain-text-box {
  flex-grow: 1;
  padding: 20px;
}

.mountain-text {
  color: white;
  font-size: 25px;
}

.mountain-character {
  width: 128px;
  height: 128px;
  margin: 20px;
}

.mountain-option-container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.hidden {
  display: none !important;
}

/*# sourceMappingURL=main.css.map*/