/*3992100789*/

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

/*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 {
position: relative;
min-height: 100vh;
overflow: auto;
}
body {
margin: 0;
box-sizing: border-box;
padding: 1px 0;
}

/*BACKGROUND:*/
body {
background: radial-gradient(transparent 0%, transparent 50%, black 100%), url(assets/SLTV.webp);
background-color: #000022;
background-attachment: fixed;
background-size: cover;
}

#Rapper{
position: absolute;
left: 0;
right: 0;
min-height: 100vh;
}

/*CRT Effect:*/
/*Credit to Alec Clownes for compiling effects and making a tutorial @ https://aleclownes.com/2017/02/01/crt-display.html*/
/*Credit to Lucas Bebber for the screen door effect and flicker animation*/
/*Screen Door Effect:*/
.crt::before {
content: " ";
display: block;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
z-index: 99;
background-size: 100% 2px, 3px 100%;
pointer-events: none;
}
/*Flicker Animation:*/
@keyframes flicker {
  0% {
  opacity: 0.27861;
  }
  5% {
  opacity: 0.34769;
  }
  10% {
  opacity: 0.23604;
  }
  15% {
  opacity: 0.90626;
  }
  20% {
  opacity: 0.18128;
  }
  25% {
  opacity: 0.83891;
  }
  30% {
  opacity: 0.65583;
  }
  35% {
  opacity: 0.67807;
  }
  40% {
  opacity: 0.26559;
  }
  45% {
  opacity: 0.84693;
  }
  50% {
  opacity: 0.96019;
  }
  55% {
  opacity: 0.08594;
  }
  60% {
  opacity: 0.20313;
  }
  65% {
  opacity: 0.71988;
  }
  70% {
  opacity: 0.53455;
  }
  75% {
  opacity: 0.37288;
  }
  80% {
  opacity: 0.71428;
  }
  85% {
  opacity: 0.70419;
  }
  90% {
  opacity: 0.7003;
  }
  95% {
  opacity: 0.36108;
  }
  100% {
  opacity: 0.24387;
  }
}
.crt::after {
content: " ";
display: block;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: rgba(18, 16, 16, 0.1);
opacity: 0;
z-index: 2;
pointer-events: none;
animation: flicker 0.15s infinite;
}


/*CURSOR:*/
html {
cursor: url("assets/cursor/cursor-default.png"), default;
}
html:active {
cursor: url("assets/cursor/cursor-click.png"), default;
}
a {
cursor: url("assets/cursor/cursor-point.png"), pointer;
}
a:active {
cursor: url("assets/cursor/cursor-point-click.png"), pointer;
}

/*HEADER:*/
header {
margin: 20px 0 35px;
display: flex;
align-items: center;
justify-content: center;
}
#Logo {
width: 200px;
height: 200px;
margin: 0 100px 0 0;
}

/*TEXT:*/

/*Font Families:*/
@font-face { font-family: "Limit0"; src: url(assets/ttf/8BitLimit0.ttf) format("truetype"); }
@font-face { font-family: "Limit"; src: url(assets/ttf/8BitLimit.ttf) format("truetype"); }
@font-face { font-family: "FreePixel"; src: url(assets/ttf/FreePixel.ttf) format("truetype"); }

/*Default Font Style:*/
body {
font-family: "FreePixel", Helvetica;
color: #AB9068;
word-spacing: normal;
line-height: 1.8em; 
}

/*Root font-size:*/
html {
font-size: 17px; 
}

/*Big headings have a different font and style*/
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 1rem;
line-height: 1.2em;
font-weight: normal;
}
/*Small headings have the default style*/
h4, h5, h6 {
margin: 0 0 1rem;
font-weight: bold;
}

/*h1 is only used for the large header at the top of the page*/
h1 {
color: #000000;
font-family: "Limit0", Helvetica;
text-shadow: #000022 -7px -7px;
font-weight: normal;
font-size: 170px;
}
/*I have spent weeks fine-tuning these sizes -_-*/
h2 {
font-size: 3.5rem;
}
h3 {
font-size: 2.5rem;
}
h4 {
font-size: 2.3rem;
}
h5 {
font-size: 1.5rem;
}
h6 {
font-size: 1rem;
}
p {
font-size: 1rem;
margin: 0 0 1rem;
text-align: justify;
}
small {
display: inline-block;
font-size: 0.8rem;
line-height: 10px;
}

/*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; 
}

/*LINKS:*/

/*Text Links:*/
a:not(:has(img)) {
color: #4F4980;
font-weight: bold;
text-decoration: none;
}
a:not(:has(img)):hover {
color: #FFFFFF;
background: #4F4980;
}
/*Text Links for Big Headings:*/
h1 a, h2 a, h3 a {
color: #000022;
text-decoration: underline;
font-weight: normal;
}
h1 a:hover, h2 a:hover, h3 a:hover {
color: #FFFFFF;
background-color: #000022;
font-weight: normal;
}
a:has(img) {
transition: transform .2s;
}
a:has(img):hover {
opacity: 0.8; 
}
a:has(img):active {
transform: scale(0.7);
}

/*ROYGBIV:*/

/*Red:*/
.red {
color: #C43635;
}
a.red:hover {
color: #FFFFFF;
background-color: #C43635;
}
.red-within:hover .red{
color: #FFFFFF;
}
h2.red, h3.red {
color: #C43635;
text-shadow: darkred -2px 2px, darkred -2px -2px, darkred 2px -2px, darkred 2px 2px;
font-weight: normal;
}
h2 a.red, h3 a.red {
color: #C43635;
text-shadow: darkred -2px 2px, darkred -2px -2px, darkred 2px -2px, darkred 2px 2px;
text-decoration: underline;
font-weight: normal;
}
h2 a.red:hover, h3 a.red:hover {
text-shadow: #C43635 -2px 2px, #C43635 -2px -2px, #C43635 2px -2px, #C43635 2px 2px;
background-color: transparent;
}
/*Orange:*/
.orange {
color: #EB9233;
}
a.orange:hover {
color: #FFFFFF;
background-color: #EB9233;
}
.orange-within:hover .orange{
color: #FFFFFF;
}
h2.orange, h3.orange {
color: #EB9233;
text-shadow: sienna -2px 2px, sienna -2px -2px, sienna 2px -2px, sienna 2px 2px;
font-weight: normal;
}
h2 a.orange, h3 a.orange {
color: #EB9233;
text-shadow: sienna -2px 2px, sienna -2px -2px, sienna 2px -2px, sienna 2px 2px;
text-decoration: underline;
font-weight: normal;
}
h2 a.orange:hover, h3 a.orange:hover {
text-shadow: #EB9233 -2px 2px, #EB9233 -2px -2px, #EB9233 2px -2px, #EB9233 2px 2px;
background-color: transparent;
}
/*Yellow:*/
.yellow {
color: #FFFF43;
}
a.yellow:hover {
color: #FFFFFF;
background-color: #FFFF43;
}
.yellow-within:hover .yellow{
color: #FFFFFF;
}
h2.yellow, h3.yellow {
color: #FFFF43;
text-shadow: darkgoldenrod -2px 2px, darkgoldenrod -2px -2px, darkgoldenrod 2px -2px, darkgoldenrod 2px 2px;
font-weight: normal;
}
h2 a.yellow, h3 a.yellow {
color: #FFFF43;
text-shadow: darkgoldenrod -2px 2px, darkgoldenrod -2px -2px, darkgoldenrod 2px -2px, darkgoldenrod 2px 2px;
text-decoration: underline;
font-weight: normal;
}
h2 a.yellow:hover, h3 a.yellow:hover {
text-shadow: #FFFF43 -2px 2px, #FFFF43 -2px -2px, #FFFF43 2px -2px, #FFFF43 2px 2px;
background-color: transparent;
}
/*Green:*/
.green {
color: #58CB30;
}
a.green:hover {
color: #FFFFFF;
background-color: #58CB30;
}
.green-within:hover .green{
color: #FFFFFF;
}
h2.green, h3.green {
color: #58CB30;
text-shadow: darkgreen -2px 2px, darkgreen -2px -2px, darkgreen 2px -2px, darkgreen 2px 2px;
font-weight: normal;
}
h2 a.green, h3 a.green {
color: #58CB30;
text-shadow: darkgreen -2px 2px, darkgreen -2px -2px, darkgreen 2px -2px, darkgreen 2px 2px;
text-decoration: underline;
font-weight: normal;
}
h2 a.green:hover, h3 a.green:hover {
text-shadow: #58CB30 -2px 2px, #58CB30 -2px -2px, #58CB30 2px -2px, #58CB30 2px 2px;
background-color: transparent;
}
/*Blue:*/
.blue {
color: #075DB2;
}
a.blue:hover {
color: #FFFFFF;
background-color: #075DB2;
}
.blue-within:hover .blue{
color: #FFFFFF;
}
h2.blue, h3.blue {
color: #075DB2;
text-shadow: midnightblue -2px 2px, midnightblue -2px -2px, midnightblue 2px -2px, midnightblue 2px 2px;
font-weight: normal;
}
h2 a.blue, h3 a.blue {
color: #075DB2;
text-shadow: midnightblue -2px 2px, midnightblue -2px -2px, midnightblue 2px -2px, midnightblue 2px 2px;
text-decoration: underline;
font-weight: normal;
}
h2 a.blue:hover, h3 a.blue:hover {
text-shadow: #58CB30 -2px 2px, #58CB30 -2px -2px, #58CB30 2px -2px, #58CB30 2px 2px;
background-color: transparent;
}
/*Indigo:*/
.indigo {
color: #1F0398;
}
a.indigo:hover {
color: #FFFFFF;
background-color: #1F0398;
}
.indigo-within:hover .indigo{
color: #FFFFFF;
}
h2.indigo, h3.indigo {
color: #1F0398;
text-shadow: blueviolet -2px 2px, blueviolet -2px -2px, blueviolet 2px -2px, blueviolet 2px 2px;
font-weight: normal;
}
h2 a.indigo, h3 a.indigo {
color: #1F0398;
text-shadow: blueviolet -2px 2px, blueviolet -2px -2px, blueviolet 2px -2px, blueviolet 2px 2px;
text-decoration: underline;
font-weight: normal;
}
h2 a.indigo:hover, h3 a.indigo:hover {
text-shadow: #1F0398 -2px 2px, #1F0398 -2px -2px, #1F0398 2px -2px, #1F0398 2px 2px;
background-color: transparent;
}
/*Violet:*/
.violet {
color: #4F4980;
}
a.violet:hover {
color: #FFFFFF;
background-color: #4F4980;
}
.violet-within:hover .violet{
color: #FFFFFF;
}
h2.violet, h3.violet {
color: #4F4980;
text-shadow: indigo -2px 2px, indigo  -2px -2px, indigo 2px -2px, indigo 2px 2px;
font-weight: normal;
}
h2 a.violet, h3 a.violet {
color: #4F4980;
text-shadow: indigo -2px 2px, indigo -2px -2px, indigo 2px -2px, indigo 2px 2px;
text-decoration: underline;
font-weight: normal;
}
h2 a.violet:hover, h3 a.violet:hover {
text-shadow: #4F4980 -2px 2px, #4F4980 -2px -2px, #4F4980 2px -2px, #4F4980 2px 2px;
background-color: transparent;
}

/*MISCELLANEOUS:*/

hr {
height:5px;
background-color: #AB9068;
border-width: 0;
margin-bottom: 15px;
}

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

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

#Roses {
width: 630px;
position: absolute;
margin-inline: auto;
top: -65px;
left: 0;
right: 0;
}

#Back {
width: 100px; 
height: 100px;
display: block;
position: fixed;
bottom: 0;
right: 0; 
border: 20px; 
border-color: #0B0A12;
}

/*Content-Boxes:*/
.box {
background-color: #100d06B0;
border-color: #1d1d15;
border-style: solid;
border-width: 12px;
margin: 15px;
padding: 20px;
}
.box:hover {
background-color: #100d06F0;
}
.aside {
background-color: #000022; 
border-width: 5px; 
border-color: #AB9068; 
border-style: solid; 
margin: 20px 0; 
padding: 20px 0; 
}
.aside h2, .aside h3, .aside h4, .aside p {
text-align: left;
}
.aside div {
padding: 10px;
}

/*Left:*/
#Left {
width: 25vw; 
position: relative;
}
/*Right:*/
#Right {
width: 65vw; 
position: relative;
background-image: url('assets/wall_dark.jpg');
}

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

/*Maps:*/
map {
cursor: url(assets/cursor/cursor-point.png), pointer;
}
map:active {
cursor: url("assets/cursor/cursor-point-click.png"), pointer;
}
area {
cursor: url(assets/cursor/cursor-point.png), pointer;
}
area:active {
cursor: url("assets/cursor/cursor-point-click.png"), pointer;
}

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

/*IMAGES:*/

.flavorcon {
width: calc(15vw - 30px);
height: calc(15vw - 30px);
margin-bottom: 20px; 
}

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

.spinL {
transform: rotate(-15deg);
transition: transform .2s; 
}
.spinL:hover {
transform: scale(1.1);
}
.spinL:active {
transform: scale(0.9) rotate(-15deg);
opacity: 0.7;
}
.spinR {
transform: rotate(15deg);
transition: transform .2s; 
}
.spinR:hover {
transform: scale(1.1);
}
.spinR:active {
transform: scale(0.9) rotate(15deg);
opacity: 0.7;
}

/*LISTS:*/

.list {
margin: 0;
}
.list li::marker {
content: "\01FABA ";
font-size: 2rem;
}
.list-sml {
margin: 0;
}
.list-sml li::marker {
content: "\01FABA ";
font-size: 1.5rem;
}
.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;
}

/*TEXT ANIMATIONS:*/

/*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;  
}

/*UP ARROW:*/

#Up-Arrow {
transform: rotate(270deg);
width: 150px;
position: absolute;
bottom: 70px;
right: 5px;
z-index: 98;
}
#Up-Arrow:hover {
opacity: 0.7; 
}

/*FOOTER:*/
footer {
position: absolute;
bottom: 0;
width: 100vw;
margin: 40px 0 0 0;
z-index: 97;
}

/*Semper Record,,*/
/*-8*/