@font-face {
    font-family: 'Pixo';
    src: url('../assets/fonts/fnt_pixo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Magazine';
    src: url('../assets/fonts/fnt_magazine.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'MachineCompany';
    src: url('../assets/fonts/fnt_machinecompany.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@keyframes slideBg {
    0% {background-position: 0 0;}
    100% {background-position: 0 1000px;}
}

@keyframes changeCase {
  0%, 100% {
    text-transform: uppercase;
  }
  50% {
    text-transform: lowercase;
  }
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: MachineCompany;
    
    background-image: 
        linear-gradient(
            to right, 
            rgba(0, 0, 0, .85), 
            rgba(0, 0, 0, 1), 
            rgba(0, 0, 0, 1), 
            rgba(0, 0, 0, .85)
            ), 
        url('../assets/bgs/bg_psyche.gif');
    
    background-attachment: fixed; 
    background-position: center;
    background-repeat: repeat; 
    background-size: cover;
    image-rendering: pixelated;
    
    animation: slideBg 45s linear infinite forwards;
    
    text-align: center;
    
    max-width: 50%;
    margin: 0 auto;
    
    min-height: 90vh;
    max-height: 90vh;
    
    display: flex;
    flex-direction: column;    /* Aligns items in a column stack */
    justify-content: center;   /* Centers content vertically */
}
h1 {
    margin: 2.5%;
    text-align: center;
    
    font-family: Pixo;
    font-size: 192px;
    text-shadow: 1px 1px 3px #000;
}
h2 {
    text-align: center;
    font-family: Magazine;
    font-size: 48px;
    text-shadow: 1px 1px 3px #000;
    
    transition: text-shadow 0.25s ease;
    animation: changeCase 2s infinite steps(1); 
}
h2:hover {
    text-shadow: 1px 1px 5px #fff;
}

ul {
    list-style: none;
}
li {
    margin: 2.5%;
}

.whisper {
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.25s ease;
}
.whisper:hover {
    color: rgba(255, 255, 255, 0.5);
}
.par {
    margin: 2.5%;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}
.found {
    margin: 1%;
}
.secretpath {
    margin: 5%;
    
    color: rgba(255, 255, 255, 0.1);
    transition: color 0.25s ease;
}
.secretpath:hover {
    color: rgba(255, 255, 255, .75);
}