/*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, body {
height: 100%; 
}

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

/*Cursor*/
cursor: url("cursor/cursor-default.png"), default;
}
html:active {
cursor: url("cursor/cursor-click.png"), default;
}

body {
/*Background*/
background: url("img/FAWallpaper.jpg");
background-color: #3C7ED2;
background-size: cover;
background-attachment: fixed;
/*Font*/
font-family: "FreePixel", Helvetica;
color: white;
word-spacing: normal;
line-height: 3em;
/*miscellaneous*/
margin: 0;
box-sizing: border-box;
padding: 1px 0;
}

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

h1, h2, h3 {
color: #3C7ED2;
font-family: "Limit", Helvetica;
text-shadow: white -2px 2px, white -2px -2px, white 2px -2px, white 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;
text-align: justify;
}

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

/*Links*/

a {
cursor: url("cursor/cursor-point.png"), pointer;
}
a:not(:has(img)) {
color: #3C7ED2;
font-weight: bold;
text-decoration: none;
}
a:not(:has(img)):hover {
color: #FFFFFF;
background: #3C7ED2;
}
/*Big Text*/
h1 a {
color: #3C7ED2;
text-decoration: underline;
}
h2 a {
color: #3C7ED2;
text-decoration: underline;
}
h3 a {
color: #3C7ED2;
text-decoration: underline;
}
h1 a:hover {
color: #FFFFFF;
background-color: #3C7ED2;
}
h2 a:hover {
color: #FFFFFF;
background-color: #3C7ED2;
}
h3 a:hover {
color: #FFFFFF;
background-color: #3C7ED2;
}
a:active {
cursor: url("cursor/cursor-point-click.png"), pointer;
}

/*General Properties*/

hr {
height: 2px;
border-width: 0;
background-color: white;
margin-bottom: 15px;
}

.nav {
padding: 10px;
border-left: 2px solid white;
border-right: 2px solid white;
width: 150px;
}
.nav h3 {
margin: auto;
text-align: center;
}

.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: #67DD34B0;
border-color: #3FAF1C;
border-style: solid;
border-width: 12px;
margin: 15px;
padding: 20px;
}
.box:hover {
background-color: #67DD34F0;
}
@media (max-width: 500px) {
.box {
background-color: #67DD34;
}
}

/*Specific-But-Common Properties*/

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

textarea {
background-color: #3C7ED2;
color: white;
width: 100%;
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*/
h1::selection {
background-color: #1855B0;
color: #3C7ED2;
}
::selection {
background-color: #1855B0;
color: #FFFFFF;
}
::-moz-selection {
background-color: #1855B0;
color: #FFFFFF;
}
::-o-selection {
background-color: #1855B0;
color: #FFFFFF;
}
::-ms-selection {
background-color: #1855B0;
color: #FFFFFF;
}
::-webkit-selection {
background-color: #1855B0;
color: #FFFFFF;
}
img::selection {
background-color: #1855B0; 
}
iframe::selection {
background-color: #1855B0; 
}

/*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;
line-height: 1em;
}

/*Buttons*/
button {
cursor: url(cursor/cursor-point.png), pointer;
background-color: #000022;
color: #ffffff;
}
button:active {
cursor: url("cursor/cursor-point-click.png"), pointer;
}

/*Hidden Images*/
.secret {
cursor: url(cursor/cursor-point.png), pointer;
}
.secret:active {
cursor: url("cursor/cursor-point-click.png"), pointer;
}

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

/*Footer*/

#Wrapper{
min-height: 100%;
margin-bottom: -101px;
}
#Push {
height: 101px; 
}
footer {
width: 100%;
margin: 40px 0 0 0;
}

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

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