/* style.css */

/* Fullscreen loading screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Loader Animation */
.loader {
    width: 100px;
    height: 100px;
    margin:2em;
    border: 15px solid transparent;
    border-bottom: 20px solid #660000;
    border-top: 20px solid #000066;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-sizing: border-box;
}

/* Animation Keyframes */
@keyframes spin {
    0% {
	transform: rotate(0deg);
    }
    100% {
	transform: rotate(360deg);
    }
}

@font-face {
	font-family: 'Monoton';
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/monoton.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

header {
	position: fixed;
	top:0;
	width:100%;
	height:165px;
	z-index: 1000;
}

body {
	font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	text-align:justify;
	margin: 165px 0 0 0;	padding: 0;  font-size: 111%;  letter-spacing: 0.25px;  word-spacing: 1px;
}

#app {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background: url(../images/dt.png) center center fixed;
	background-size: cover;
}

header .logo {
	float: left;	position: absolute;
	width: 90px;	height: 90px;
	padding: 2px;	margin: 5px;
}

header .hdr {
	font-family: Monoton;
	font-weight: normal !important;
	font-size: 50px;
	word-spacing: 10px;
	background-color: #FFFFFF;
	color: #660000;
	text-align: center;
	padding: 10px 100px;
	margin: 0;
	text-shadow: 0px 0px 2px rgb(120, 0, 0);
}

div#right {
    float: right;
    margin: 0;
    right: 1.25em;
    width: 84px;
    height: 84px;
    top: 5px;
    position: absolute;
    padding: 5px 0;
    font-weight: bold;
    font-size: x-large;
    text-align: center;
}

nav {
	background-color: #000066;
	margin: 0;
}

nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
}

nav li {
	color: #ffffff;
	margin: 0;
}

nav a {
	text-decoration: none;
	font-weight: 600;
	color: #fff;
	padding: 10px;
	display: block;
}

nav a:hover {
	transition: background-color 0.5s ease;
	background-color: #FFFFFF;
	color: #000066;
	border: solid #000066 0px;
	border-radius:8px;
}

main {
	flex: 1;
	padding: 1.5em;
}

#content {
	max-width: 1000px;
	margin: 0 auto;
	padding: 2em;
	background-color: #fff;
	border-radius: 10px;
	border: solid #660000 1px;
	box-shadow: 0 0 8px rgba(120, 0, 0, 0.5);
}


#content h2 {
	counter-reset:section;
	font-family:'Agency FB';	color: #660000;
	letter-spacing: 0.5px;  word-spacing: 1px;
	margin-bottom: 0;
}

#content h3::before {
	counter-increment:section;
	content:"" counter(section) ".  ";
}

#content h3 {
	counter-reset:subsection;
	font-family:'Agency FB';
	color: #000066;
	letter-spacing: 0.5px;  word-spacing: 1px;
	margin-top: 1.5em;
}

#content h4::before, #content .tag_line::before, #content p.h3::before
{
	content: "☞ ";
	font-size: 35px !important;
	color: #000066;
	font-weight: 500;
}

#content h4 {
	font-family:'Agency FB';
	color: #660000;
	letter-spacing: 0.5px;  word-spacing: 1px;
	margin-bottom: -0.75em;
	margin-top: 0.5em;
}

#content p.h4 {
	margin-left: 5em;
	text-indent: -2.5em;
}

b {
	color: #660000;
	font-weight: 600;
}

i {
	color: #000066;
	font-weight: 400;
}

#content img {
	width: auto;
	height: auto;
	max-width: 400px;
	max-height: 400px;
	margin: 2em auto;
	display: block;
	border-radius: 12px;
	box-shadow: 0px 0px 6px #660000;
	border: 1px solid #660000;
	transition: transform 0.5s;
}

#content img.imgRYT:hover, #content img.imgLFT:hover, #content img.imgMID:hover {
  transform: scale(1.5);
}

#content img.imgRYT {
	float: right;
	margin: 0 0 0 1.5em;
}

#content img.imgLFT {
	float: left;
	margin: 0 1.5em 0 0;
}

#content img.imgMID {
	margin: 1em auto;
	max-width:600px;
	max-height:600px;
}

#content .tag_line {
	text-align: right;
	margin: -0.5em 1em 1em 0;
	color: #000066;
	font-weight: bold;
}

header .tag_line {
    font-family: 'Agency FB';
    color: #000066;
    font-weight: bold;
    margin-top: -3em;
	margin-right: 1em;
    float: right;
}

header .tag_line::before {
	content: "☞ ";
	font-size: 30px !important;
	color: #000066;
	font-weight: 500;
	margin: 0 auto;
}


#content section {
	margin: 0 1em;
	display: block;
}

#content section.level2 p {
	margin-left: 2em;
	display: block;
}

#content section.level3 p {
	margin-left: 2em;
	display: block;
}

#content .separate img {
	border:none;
	box-shadow:none;
}

ul li, ol li { margin: 10px 0; }

#go2top{
	position: fixed;
	right: 20px;
	bottom: 60px;
	display: flex;
	width: 32px;
	height: 32px;
	transition: 0.5s;
	padding:8px;
	z-index: 99;
	box-shadow: inset 0 0 0 0 #000066;
	border-radius:50px;
	background-color:#000066;
	border: solid #FFFFFF 2px;
	color: #FFFFFF;
	font-weight:bold;
	display:none;
}

#go2top:hover {
	transition: background-color 0.5s ease;
	background-color: #FFFFFF;
	border: solid #660000 2px;
	color: #660000;
}

.contact {
	margin: 1em;
	text-align:left;
}

.toolbar {
	float:right;
	margin: -3em 1em 1em 1em;
}

.toolbar button {
	color: white;
	padding: 10px;
	background: black;
	border-radius: 50%;
	border: solid white 2px;
	cursor: pointer;
}

.toolbar button:disabled {
	background: gray;
	cursor: not-allowed;
}

.foot {
	font-family:'Agency FB';
	color: #000066;
	text-align:center;
	margin:10px;
	font-weight:bold;
}

ol[type='A']{
	margin-left:1em;
}

li::marker {
	color: #660000;
	font-weight: 600;
}
