/*
NOTES:
    bg: #F2E9D8
   red: #F02554
  text: #413E45 
*/
:root {
    --bg: #d1fcab;
    --red: #F02554;
    --text: black;
}

.alegreya-<uniquifier> {
  font-family: "Alegreya", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

body {
	background-color: var(--bg);
	font-family: 'Alegreya';
	font-size: 20px;
	color: var(--text);
	
}

a {
  text-decoration: underline;
  text-decoration-style: dashed;
  color: cadetblue;
}
/*************************** ^^^^ GENERAL SPECIFIC  ^^^^ **************************/





/*******************************  STYLE SPECIFIC  ***************************/
.whole {
  
}

.banner {
  margin: 0.6em 0 0 1em;
}

.main {
  border-radius: 5px;
  background-color: snow;
}


.bor {
  border: 2px solid;
  border-color: white;
  border-radius: 30px;
}

/*********** NAVIGATION  **********/
.button {
  border: dashed 1px;
  border-radius: 5px;
  margin-bottom: 0.5em;
  margin-left: 0.5em;
  padding: 0.4em;
  transition: 0.1s;
}
.button a {
  text-decoration: none;
}
.button:hover {
  background-color: snow;
}
.current-pg {
  border: solid 1px;
  background-color: snow;
}

.character-nav {
  
}

.icon-container .active {
  border: solid 1px;
}

.icon {
  width: 200px;
  height: 200px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 0.5em;
  border: dashed 1px;
  border-radius: 10px;
}
.icon:hover {
  border: solid 1px;
}

.tab-pane {
  border: 0;
}
