/* custom_palette.css */
/* Styles used in subsequent templates */


:root {

/*  Color Palette  */
--color-1 : #fefefe;
--color-2 : #f3f3f3;
--color-3 : #cccc;
--color-4 : #c0c0c0;
--color-5 : #dedede;

--bg-color-1 : #111;
--bg-color-2 : #2e2e2e;
--bg-color-3 : #363636;
--bg-color-4 : #4a4a4a;
--bg-color-5 : #6e6e6e;


--nearblack-gradient:  linear-gradient(to right, #060606, #2c2c2c, #060606);

--main-color :#060606;
--main-bg-color :#dedede;

--accent-color-1: #aea329;
--accent-color-2: #eee1a1;
--accent-color-3: #3366cc;
--accent-color-4: #3c6;
--accent-color-5: #9fc;
--accent-color-5: rgb(60, 117, 89);

--page-width-max: 1100px;
--page-width-min: 420px;
--page-padding: 10%;   

}



:main {
a,
a:link {
color : var(--main-link-color-2);
text-decoration : none;
}
a:active,
a:hover {
color : var(--main-link-color-1);
text-decoration : underline;
}
a:visited {
color : var(--main-link-color-2);
text-decoration : none;
}
}

footer {
  color : var(--accent-color-2);

}

footer a,
footer a:link {
color : var(--accent-color-2);
text-decoration : none;
}
footer a:active,
footer a:hover {
color : var(--accent-color-3);
text-decoration : underline;
}

footer a:visited {
color : var(--accent-color-2);
text-decoration : none;
}




/* Structure */
html, body {
  position: relative;
  width: 100%;
  margin: auto 0;
  color: var(--color-3);
  background-color: var(--bg-color-1);
}

header,
footer {
  position: relative;
  background-image: var(--nearblack-gradient);
}


header {
  min-height: 80px;
  color: var(--color-3);
}



.header_nav,
.banner {
  min-height: 1rem;
  min-width: var( --page-width-min);
  max-width: var( --page-width-max);
  border: dotted 0px var(--accent-color-2);
}

 

main {
  position: relative;
  min-height:calc(100vh - 15rem);
  color: var(--main-color);
  background-color: var(--main-bg-color);

  border: solid transparent; /* Essential: Make the border transparent */
  border-width: 9px 0 9px 0;
  border-image: linear-gradient(to bottom right, #aea329, #eee1a1, #aea329); /* Apply your gradient */
  border-image-slice: 1; /* Specifies using the entire gradient for the border */
}

section {
  display: block;
  position: relative;
}

section.row {
  margin:0 auto;
  width:100%;
}

section div.row_liner {
  margin:0 auto;                
  width:100%;
  height:100%;
}


section .content_block_a {
  width:100%;
  max-width:var(--page-width-max);
  min-height:calc(20vh - 5rem);
  margin:0 auto;
  padding:4rm 10%;
  border: dotted 0px var(--accent-color-2);
}


.reading_width {
  margin: auto;
  max-width: var(--reading-width);
  border: var(--main-hover-color) solid 2px;
}


footer {

  line-height: 1.5;
  font-size: .8rem;
  color: var(--main-bg-color);
  background-color: var(--main-color);  
}




/*
.footer_container,
.subfooter_container {
min-width: var( --page-width-min);
max-width: var( --page-width-max);
}


.blur-bg-1{
backdrop-filter: blur(4px); 
}

.pic {
box-shadow:1rem 1rem 4rem #000;
}

img.header_logo {
position:absolute;
left:2rem;
max-height:60px;
}





.blur-bg-1{
backdrop-filter: blur(4px); 
}
*/