/*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(#333333 0%, #010101 60%, black 90%, black 100%);
background-color: #000000;
background-attachment: fixed;
background-size: cover;
}

#Rapper{
position: absolute;
left: 0;
right: 0;
min-height: 100vh;
}
/*Computer:*/
#Content {
background: url('https://corvus-nidum.neocities.org/Alexandria.exe/assets/computer-monitor.png');
background-size: contain; 
background-repeat: no-repeat; 
aspect-ratio: 7 / 6;
max-width: 100%;
max-height: 100%; 
min-width: 497px; 
min-height: 426px;
position: fixed; 
top: 0; 
bottom: 0; 
left: 0; 
right: 0; 
margin: auto;
}
#Terminal {
width: 80%; 
height: 73%; 
margin: auto; 
position: relative; 
bottom: 13px; 
}
#TerminalData {
Overflow-y: scroll;
animation:
  typing 5s steps(40, end);
}
@keyframes typing {
  from { height: 0 }
  to { height: 100% }
}

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

/*TEXT:*/

/*Font Families:*/
@font-face { font-family: "FreePixel"; src: url(https://corvus-nidum.neocities.org/assets/ttf/FreePixel.ttf) format("truetype"); }

/*Default Font Style:*/
body {
font-family: 'FreePixel', Helvetica;
color: #2CFF05;
word-spacing: normal;
line-height: 1;
text-shadow: 0 0 1px green, 0 0 1px green, 0 0 1px green, 0 0 1px green;
}

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

p {
margin: 0 0 1rem;
text-align: justify;
}

pre {
font-family: 'FreePixel', Helvetica; 
}

input {
background: #2CFF05;
caret-color: black; 
color: black;
font-family: 'FreePixel', Helvetica;
}

/*Highlights:*/
::selection {
background-color: #2CFF05;
color: black;
}
::-moz-selection {
background-color: #2CFF05;
color: black;
}
::-o-selection {
background-color: #2CFF05;
color: black;
}
::-ms-selection {
background-color: #2CFF05;
color: black;
}
::-webkit-selection {
background-color: #2CFF05;
color: black;
}
img::selection {
background-color: #2CFF05; 
}
iframe::selection {
background-color: #2CFF05; 
}

/*LINKS:*/

/*Text Links:*/
a:not(:has(img)) {
font-weight: bold;
text-decoration: underline;
}
a:not(:has(img)):hover {
color: black;
background: #2CFF05;
}
/*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;
}
*/

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

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

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

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

.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*/