@font-face {
    font-family: "Fira Mono";
    src: url("/fonts/FiraMono/FiraMono-Regular.ttf");
}

@font-face {
    font-family: "Lexend";
    src: url("/fonts/Lexend/Lexend-VariableFont_wght.ttf");
}

@font-face {
    font-family: "Atkinson";
    src: url("/fonts/Atkinson/AtkinsonHyperlegibleNext-VariableFont_wght.ttf");
}

body {
    background: linear-gradient(0deg, #2b2926, #373430, #2b2926);
    /* background-size: 600% 600%; */
    background-size: 200% 200%;
    /* animation: bodyBackground 30s ease infinite; */
    color: #EEEEEE;
    font-family: "Atkinson", "Lexend", sans-serif;
    margin: 0;
    padding: 0;
    cursor: url("/cursors/Wii/Wii\ Cursor.cur"), auto;
}

#dvd-bg {
    display: none;
    position: fixed;
    z-index: -1;
    opacity: 0.7;
    pointer-events: auto;
    max-width: 160px;
    max-height: 90px;
    width: auto;
    height: auto;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    /* background: radial-gradient(circle, #1f1d1b, #000000); */
    background: rgba(31, 29, 27, 0.9);
    /* background-size: 200% 200%; */
    animation: containerPulse 24s alternate infinite;
    border: 2px solid #444;
    box-shadow: 0 0 15px #4f4936;
}

@keyframes containerPulse {
    0% {
        box-shadow: 0 0 10px #4f4936;
    }
    50% {
        box-shadow: 0 0 30px #6d533f;
    }
    100% {
        box-shadow: 0 0 10px #4f4936;
    }
}

h1, h2 {
    color: #356e42;
    text-shadow: 1px 1px 0 #000;
}

a {
    color: #89b2bd;
    text-decoration: underline;
    cursor: url("/cursors/Wii/wii-pointer-blue-ccw.cur"), auto;
}

a:hover {
    color: #298ca5;
}

ul {
    list-style-type: square;
}

hr {
    border: none;
    border-top: 2px dashed #444;
    margin: 20px 0;
}

.under-construction {
    width: 100px;
    margin-top: 10px;
}

marquee {
    color: #9c9c9c;
    background-color: #222;
    padding: 5px;
    font-weight: bold;
    border: 3px dotted #999;
}

@media only screen and (max-width: 768px) {
    body {
        font-size: 14px;  /* Smaller text for tablets */
    }

    .container {
        max-width: 600px;
        padding: 15px;  /* Adjust padding */
        box-shadow: 0 0 10px #00FF00; /* Less intense shadow for small screens */
    }

    h1, h2 {
        font-size: 1.5em;  /* Make headings slightly smaller */
    }

    marquee {
        font-size: 1em;  /* Smaller text in marquee */
    }
}

/* Media Query for Mobile Devices (max-width: 480px) */
@media only screen and (max-width: 480px) {
    body {
        font-size: 12px;  /* Even smaller text for small screens */
    }

    .container {
        max-width: 300px;  /* Full width container on small screens */
        padding: 10px;  /* Reduce padding */
        box-shadow: none; /* Remove box-shadow to save space */
    }

    h1, h2 {
        font-size: 1.2em;  /* Smaller headings */
    }

    marquee {
        font-size: 0.9em;  /* Reduce marquee font size */
    }

    hr {
        margin: 10px 0;  /* Less margin for horizontal rule */
    }
}

details {
  margin: 1em 0;
}

pre {
    font-family: "Fira Mono";
    white-space: pre-wrap;
    color: #9c9c9c;
    background-color: #000000;
    padding: 10px;
    border: solid 1px #9c9c9c;
}