/*3992100789*/
/*:p*/

/*media query debug:

body::before {
content: "- lorem ipsum -";
color: red; font-style: italic; font-weight: bold; background: pink; text-align: center; display: block; position: absolute; top: 0; left: 0; right: 0; z-index: 99; }

*/

html {
/*Root font-size*/
font-size: 7px;

/*Cursor*/
cursor: url("assets/cursor/default_cursor.png"), default;
}
html:active {
cursor: url("assets/cursor/cursor_click.png"), default;
}

body {
/*Background*/
background: radial-gradient(transparent 0%, transparent 70%, black 100%), url("assets/wall_dark.jpg");
background-color: #100d06;
background-attachment: fixed;
/*Font*/
font-family: "FreePixel", Helvetica;
color: #AB9068;
word-spacing: normal;
line-height: 3em;
/*miscellaneous*/
margin: 0;
box-sizing: border-box;
}

/*Font*/
h1, h2, h3, h4, h5, h6 {
font-weight: normal; 
}

h1, h2, h3 {
color: #000022;
font-family: "Limit", Helvetica;
text-shadow: #AB9068 -2px 2px, #AB9068 -2px -2px, #AB9068 2px -2px, #AB9068 2px 2px;
margin: 0 0 35px;
line-height: 1.2em;
}

h4, h5, h6 {
margin: 0 0 0.5em; 
}

h1 {
font-size: 7rem;
}
h2 {
font-size: 6rem;
}
h3 {
font-size: 5rem;
}

h4 {
font-size: 4rem;
}
h5 {
font-size: 3rem;
}
h6 {
font-size: 2rem;
}

p {
font-size: 2rem;
margin: 0 0 14px;
}

small {
display: inline-block;
font-size: 1rem;
line-height: 10px;
}

/*Links*/

a {
cursor: url("assets/cursor/pointer_cursor.png"), pointer;
}
a:not(:has(img)) {
color: #4F4980;
font-weight: bold;
text-decoration: none;
}
a:not(:has(img)):hover {
color: #FFFFFF;
background: #4F4980;
}
/*Big Text*/
h1 a {
color: #000022;
text-decoration: underline;
}
h2 a {
color: #000022;
text-decoration: underline;
}
h3 a {
color: #000022;
text-decoration: underline;
}
h1 a:hover {
color: #FFFFFF;
background-color: #000022;
}
h2 a:hover {
color: #FFFFFF;
background-color: #000022;
}
h3 a:hover {
color: #FFFFFF;
background-color: #000022;
}
a:active {
cursor: url("assets/cursor/pointer_cursor_grab.png"), pointer;
}
/*Special Links*/
.red-within:hover .red{
color: #FFFFFF;
}
.red {
color: #C43635;
}
.red:hover {
color: #FFFFFF;
background-color: #C43635;
}

/*General Properties*/

.flex-center {
display: flex;
justify-content: center;
}

.icon {
transition: transform .2s;
}
.icon:hover {
opacity: 0.7; 
}
.icon:active {
transform: scale(0.9);
}

.box {
background-color: #100d06B0;
border-color: #1d1d15;
border-style: solid;
border-width: 12px;
margin: 15px;
padding: 20px;
}
.box:hover {
background-color: #100d06F0;
}

/*Specific-But-Common Properties*/

.list {
margin: 0;
}
.list li::marker {
content: "\01FABA ";
font-size: 2rem;
}

textarea {
background-color: #BD9EAF;
color: #000022;
width: 100%;
min-height: 31px;
resize: vertical;
}

/*Zoom*/
.zoom {
transition: transform .2s; 
}
.zoom:hover {
transform: scale(1.1);
}
.zoom:active {
transform: scale(0.9);
opacity: 0.7;
}

/*Blink*/
.blink {
font-weight: bold;
animation: 2s blinker linear infinite;
-webkit-animation: 2s blinker linear infinite;
-moz-animation: 2s blinker linear infinite;
}
@-moz-keyframes blinker
{  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}
@-webkit-keyframes blinker
{  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}
@keyframes blinker
{  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

/*Marquee*/
.marquee-container {
width: 100%;
display: flex;
overflow: hidden;
}
.marquee-container ul {
list-style: none;
display: flex;
justify-content: space-between;
align-items: center;
flex-shrink: 0;
gap: 5px;
min-width: 100%;
animation: scroll 20s linear infinite;
overflow: hidden;
padding: 0 0 0 5px;
height: fit-content;
}
@keyframes scroll{
  to {
  transform: translateX(-100%);
  }
}
.marquee-container:hover ul {
animation-play-state: paused;  
}

/*Highlights*/
::selection {
background-color: #000022;
color: #FFFFFF;
}
::-moz-selection {
background-color: #000022;
color: #FFFFFF;
}
::-o-selection {
background-color: #000022;
color: #FFFFFF;
}
::-ms-selection {
background-color: #000022;
color: #FFFFFF;
}
::-webkit-selection {
background-color: #000022;
color: #FFFFFF;
}
img::selection {
background-color: #000055; 
}
iframe::selection {
background-color: #000055; 
}


/*Header*/
header {
margin: 35px 0; 
align-items: center;
}

#Header-Logo {
width: 200px;
height: 200px; 
}

#Header-Title {
color: #000000;
font-family: "Limit0", Helvetica;
text-shadow: #000022 -8px 8px;
font-weight: normal;
font-size: 170px;
margin: 0 0 0 100px;
}
#Header-Title-Solo {
color: #000000;
font-family: "Limit0", Helvetica;
text-shadow: #000022 -8px 8px;
font-weight: normal;
font-size: 170px;
}

#SplashHeader {
color: #74D074;
font-size: 6rem;
width: 400px;
max-width: 400px;
text-align: center;
word-break: normal; 
/*Positioning*/
transform: rotate(-20deg);
position: absolute;
top: 140px;
left: 55px;
}

/*Buttons*/
button {
cursor: url(assets/cursor/pointer_cursor.png), pointer;
background-color: #000022;
color: #ffffff;
}

/*Hidden Images*/
.secret {
cursor: url(assets/cursor/pointer_cursor.png), pointer;
}
.secret:active {
cursor: url("assets/cursor/pointer_cursor_grab.png"), pointer;
}

/*Up Arrow*/
#Up-Arrow {
transform: rotate(270deg);
width: 150px;
position: absolute;
bottom: 30px;
right: 5px;
}
#Up-Arrow:hover {
opacity: 0.7; 
}

/*Footer*/
footer {
width: 100vw;
margin: 40px 0;
}

/*1 Chronicles 16:11
"Seek the Lord and his strength, seek his face continually."*/

/*Surf the web,*/
/*-8*/