* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html, body {
	height: 100%;
}
/* fonts needed
	Nodesto Caps Condensed - Name?
	Scaly Sans - Normal text for saving throwa, special ability desc, action desc.
	Scaly Sans Bold - Armor class, hit points, etc. Ability headings.
	Scaly Sans Italic - Type and alignment
	Scaly Sans Bold Italic - Special ability headings, action headings
*/
@font-face {
    font-family: "Nodesto Caps Condensed";
    src: 
        url('/assets/fonts/NodestoCapsCondensed-Bold.otf'),
        url("https://raw.githubusercontent.com/jonathonf/solbera-dnd-fonts/master/Nodesto%20Caps%20Condensed/Nodesto%20Caps%20Condensed%20Bold.otf") format("opentype");
    font-weight: bold;
}
@font-face {
    font-family: "Scaly Sans";
    src: 
        url('/assets/fonts/ScalySans.otf'),
        url("https://raw.githubusercontent.com/jonathonf/solbera-dnd-fonts/master/Scaly%20Sans/Scaly%20Sans.otf") format("opentype");
}
@font-face {
    font-family: "Scaly Sans BI";
    src: 
        url('/assets/fonts/ScalySansBoldItalic.otf'),
        url("https://raw.githubusercontent.com/jonathonf/solbera-dnd-fonts/master/Scaly%20Sans/Scaly%20Sans%20Bold%20Italic.otf") format("opentype");
    font-weight: bold;
    font-style: italic;
}
@font-face {
    font-family: "Scaly Sans B";
    src: 
        url('/assets/fonts/ScalySansBold.otf'),
        url("https://raw.githubusercontent.com/jonathonf/solbera-dnd-fonts/master/Scaly%20Sans/Scaly%20Sans%20Bold.otf") format("opentype");
    font-weight: bold;
}
@font-face {
    font-family: "Scaly Sans I";
    src: 
        url('/assets/fonts/ScalySansItalic.otf'),
        url("https://raw.githubusercontent.com/jonathonf/solbera-dnd-fonts/master/Scaly%20Sans/Scaly%20Sans%20Italic.otf") format("opentype");
    font-style: italic;
}

body {
	font-family: "Scaly Sans", sans-serif;
	position: relative;
}

h1 {
	font-family: "Nodesto Caps Condensed", sans-serif;
}
.strike {
	text-decoration: line-through;
}
label.btn.btn-outline-secondary,
button.btn.btn-outline-secondary {
	border: 1px solid #782626;
	color: #782626;
	width: 100%;
}
input.btn-check:checked + .btn,
button.btn.btn-outline-secondary:hover {
	background-color: #782626;
	border: 1px solid #782626;
}
button.btn.btn-outline-secondary:hover {
	color: #0c0d0e;
}

.roller-field {
	background: #0c0d0e;
	border: 1px solid #782626;
	color: #782626;
}
.roller-field:focus {
	background-color: #0c0d0e;
	color: #782626;
	border: 1px solid #782626;
	outline: none;
	box-shadow: none;
}
.form-check .form-check-input {
	float: none;
}
.form-check-input:checked {
	background-color: #782626;
	border-color: #782626;
}
.accordion-item {
	background: transparent;
	color: #782626;
}
.hidden {
	display: none;
}
.ssb {
	font-family: "Scaly Sans B", sans-serif;
}

.ssi {
	font-family: "Scaly Sans I", sans-serif;
}

.ssbi {
	font-family: "Scaly Sans BI", sans-serif;
}

.monster-form-container {
	display: grid;
	grid-template-columns: 35% 720px;
	grid-gap: 40px;
}
.monster-form-wrap {
	height: 100vh;
	overflow-y: scroll;
	padding: 0 20px 200px 0;
	position: fixed;
	width: 35%;
}
.monster-preview {
	/* background: linear-gradient(175deg, #7c591b 0%, #ffd59f 45%); */
	background: url(../images/grunge-paper-background.png) center;
	padding: 30px;
	position: relative;
}
.monster-preview::before,
.monster-preview::after {
	background-color: goldenrod;
	box-shadow: 5px 0 5px rgba(0, 0, 0, 0.5);
	content: "";
	display: block;
	height: 5px;
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 2;
}
.monster-preview::before {
	top: 0;
}
.monster-preview::after {
	bottom: 0;
}
.edge {
	display: block;
	top: 0;
	height: 100%;
	position: absolute;
	width: 20px;
	z-index: 1;
}
.edge-left {
	background: url(../images/paper-edge-left.png) 0 0 repeat-y;
	left: -10px;
}
.edge-right {
	background: url(../images/paper-edge-right.png) 0 0 repeat-y;
	right: -5px;
	
}

.monster-header,
.monster-stats,
.monster-abilities,
.monster-info,
h2 {
	border-bottom: 3px solid #782626;
}
.monster-header p,
.monster-stats p,
.monster-info p {
	margin: 0;
}
.monster-name {
	font-family: "Nodesto Caps Condensed", sans-serif;
	font-weight: bold;
	font-size: 60px;
}
.monster-abilities {
	display: flex;
	justify-content: space-evenly;
	padding: 30px 0;
}
.monster-abilities-text {
	line-height: 1;
	margin: 0;
	text-align: center;
	width: 70px;
}
.abilities-hdr {
	display: block;
	font-size: 25px;
}
.abilities-value,
.abilities-mod {
	font-size: 18px;
}
.monster-special-abilities p strong,
.monster-actions p strong {
	font-family: "Scaly Sans BI", sans-serif;
}


@media screen and (min-width: 768px) {
	.monster-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 40px;
	}
	.monster-info {
		border-bottom: 0 none;
	}
}
@media (prefers-color-scheme: dark) {
	body {
		background-color: rgb(12, 13, 14);
		color: rgb(120, 38, 38);
	}
}