/**
 * =============================================================================
 * This is the file where all your styling should go in.
 * Instead of modifying the styles found in the monogatari.css file or others,
 * you should overwrite those styles in this file.
 *
 * The CSS selectors shown are not an extensive list but they are the most
 * common you might want to change. To find what other elements are available,
 * you can take a look at the monogatari.css file or use your browser's dev
 * tools to inspect the elements.
 * =============================================================================
**/

/**
 * ===========================
 * General Styling
 * ===========================
**/

/* General Style */
body {
	color: black;
}

.title-backing {
	position: absolute;
  height: 100%;
  width: 100%;
  background-color: white;
  opacity: .6;
}

h3 {
	margin-bottom: 22px;
}

[data-ui="messages"] {
	background: black;
	color: white;
	border: 3px solid #f4ff73;
}

[data-ui="messages"] div.tt-option {
  height: 150px;
  width: 46%;
  display: inline-block;
  margin-left: 10px;
  cursor: pointer;
  background-size: cover;
  position: relative;
  border: 3px solid white;
}

[data-ui="messages"] div.tt-option:hover {
  border: 3px solid #f4ff73;
}

[data-ui="messages"] div.tt-option.tt-option-visited:hover {
  border: 3px solid white;
}

[data-ui="messages"] div.tt-option span {
	background: black;
	color: white;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	font-size: 18px;
	padding: 2px;
	text-align: center;
}

[data-ui="messages"] div.tt-option .visited {
	display: none;
}

[data-ui="messages"] div.tt-option.tt-option-visited .label {
	display: none;
}

[data-ui="messages"] div.tt-option.tt-option-visited .visited {
	display: block;
  background: #ffdbdbb5;
  height: 100%;
  width: 100%;
  padding-top: 55px;
  color: black;
  font-weight: bold;
  cursor: default;
}

/* Simple Button styles*/
button {
	background: rgba(0, 0, 0, 0.9);
	border: 2px solid rgba(0, 0, 0, 0);
}

[data-action="close"] {
	display: none;
}

[data-ui="message-content"] p {
	display: none;
}

[data-ui="message-content"] h3 {
	color: #f4ff73;
}

/* Simple Button Style on Hover */
button:hover {
	border: 2px solid #f4ff73;
	background: rgba(0, 0, 0, 0.9);
}

/* General Styling for Menu Screens */
[data-menu] {

}

/**
 * ===========================
 * Main Menu Styling
 * ===========================
**/

/* Main Menu Styling */
[data-menu="main"] {

}

/* Main Menu Buttons Styling */
[data-menu="main"] button {

}

/**
 * ===========================
 * Save and Load Menus Styling
 * ===========================
**/

/* Slots Style */
[data-ui="slots"] figure {

}

/* Slot's Image Style */
[data-ui="slots"] img {

}

/* Slots Title Style */
[data-ui="slots"] figcaption {

}

/* Slots Delete Button Style */
[data-ui="slots"] button {

}

/**
 * ===========================
 * Game Elements Styling
 * ===========================
**/

/* Choice Buttons style */
[data-ui="choices"] button {

}

/* Choice Button Style on Hover */
[data-ui="choices"] button:hover {

}

/* Text Box styling */
[data-ui="text"] {
	background-color: rgba(0, 0, 0, 0.8);
}

/* Character Name Style */
[data-ui="who"] {

}

/* Style for Centered Text */
[data-ui="centered"] {
	color: white;
	background: #000000ad;
	padding: 5px;
}

/* Character Images Styles */
#game [data-character] {

}

/* Other Images Styles */
#game [data-image] {

}

/**
 * ===========================
 * Quick Menu Styling
 * ===========================
**/

/* These styles are applied to the Mobile version of the Quick Menu */

/* Quick Menu Style */
[data-ui="quick-menu"] {

}

/* Quick Menu Buttons Style */
[data-ui="quick-menu"] span {

}

/* Quick Menu Buttons Style on Hover */
[data-ui="quick-menu"] span:hover {

}

/* Quick Menu Buttons Icon Style */
[data-ui="quick-menu"] > span > .fa {

}

/* Styles for the desktop version of the Quick Menu*/
@media screen and (min-width: 37.56255em) {

	/* Quick Menu Style */
	[data-ui="quick-menu"] {

	}

	/* Quick Menu Buttons Style */
	[data-ui="quick-menu"] span {

	}

	/* Quick Menu Buttons Style on Hover */
	[data-ui="quick-menu"] span:hover {

	}
}