/* Everything in this style sheet can be edited to fit whatever theme you are trying to convey.
It can be used on every webpage by using the syntax <link href="nameofsheet.css" rel="stylesheet"> */
body {
    background-color: black;
    background-image: url(bg.png);
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /*I don't know why I specified the font family for body but
    I'm too scared to touch it in horror I break something. */
    font-family: system-ui, sans-serif;
    /*Scroll Bar customization for Firefox, probably looks fine? I'll have to check */
    scrollbar-width: thin; /* options: auto | thin | none */
    scrollbar-color: rgba(0, 0, 0, 0.7) transparent; /* thumb | track */
}
@font-face {
    font-family: 'OCR';
    src: url('OCR-a.ttf');
}
h1, h2, h3, p, a {
    /* Removes custom font padding that comes with the damn font for some reason */
    margin: 0;
    padding: 0;
}
h1 {
    font-family: 'OCR';
    font-size: 85px;
    color: white;
}
p {
    font-family: 'OCR';
    font-size: 20px;
    color: white;
}
@keyframes boxGlow {
    0% { box-shadow: 0 0 5px white, 0 0 10px white; }
    50% { box-shadow: 0 0 15px white, 0 0 30px white; }
    100% { box-shadow: 0 0 5px white, 0 0 10px white; }
}
.box {
    width: 80%; /* Adjust width as needed */
    height: 800px; /* Adjust height as needed */
    border: 2px solid white; /* White outline */
    background-color: black;
    display: flex;
    flex-direction: row; /* Stack sections vertically */
    justify-content: space-around; /* Even spacing between sections */
    align-items: flex-start; /* Aligns Sections at the top */
    padding: 5px; /* Optional: Adds space inside the border */
    
    /* Glow effect */
    box-shadow: 0 0 10px white, 0 0 20px white;
    animation: boxGlow 1.5s infinite alternate;
    
    /* Ensures the GIF stays inside */
    position: relative;
}
.box2 {
    width: 80%;
    min-height: 100px;
    background-color: rgba(0, 0, 0, 0.7); /* Slight transparency */
    border: 2px solid white;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    padding: 5px;
    box-shadow: none;
    animation: none;
    position: relative;
    margin-top: 20px; /* Adds spacing from the first box */
}
/* Styles for the GIF */
.corner-gif {
    position: absolute;
    bottom: 5px; /* Adjust as needed */
    right: 5px; /* Adjust as needed */
    width: 50px; /* Adjust size */
    height: auto;
    pointer-events: none; /* Prevents interaction issues */
    z-index: 10; /* Ensures it stays on top */
}

.section {
    flex-direction: row;
    width: 100%; /* Full width */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center; 
    gap: 0;
    color: white; /* White text */
}

.section a {
    color: rgb(255, 0, 0); /* Link color */
    flex: 1;
    text-decoration: none; /* Remove underline */
    margin: 5px 0; /* Adds space between links */
    display: block; /* Forces links to appear on new lines */
    font-family: 'OCR';
    font-size: 20px;
}
.divider {
    color: red;
    font-size: 20px;
    font-family: 'OCR';
    margin: 0 10px;
    user-select: none;
}
@keyframes flicker {
    0% { text-shadow: 0 0 5px red, 0 0 10px red; }
    25% { text-shadow: 0 0 8px red, 0 0 16px red; }
    50% { text-shadow: 0 0 12px red, 0 0 24px red; }
    75% { text-shadow: 0 0 6px red, 0 0 12px red; }
    100% { text-shadow: 0 0 5px red, 0 0 10px red; }
}

.section a:hover {
    animation: flicker 0.2s infinite alternate;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/* Width of the scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

/* Track background*/
::-webkit-scrollbar-track {
    background: transparent;
}

/* The draggable part */
::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.7); /* semi-transparent black */
    border: 2px solid white; /* mimics box2's border */
    border-radius: 0; /* removes any roundness */
}