/* -------------------------------------------------------- */
/* OVERALL */
/* -------------------------------------------------------- */
:root
{
    --text-color: #a4b0be;
    --visited-color: #97b6dd;
    --focus-color: #cdccd6;
    --background-color: #fafafc;
}

*
{
    box-sizing: border-box;
}

html
{
    cursor: url('https://cdn.cursors-4u.net/previews/wii-1-open-palm-tilt-ec1322c7-32.webp') 39 35, auto !important;
}

a:hover
{
    cursor: url('https://cdn.cursors-4u.net/previews/wii-pointer-1-tilt-normal-7f3b1ab2-32.webp') 40 34, auto !important;
}

body
{
    display: flexbox;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 1500px;

    font-family: Quantico, Verdana, sans-serif;
    color: var(--text-color);

    background-image: url(../images/bgs/miscellaneous_33.jpg);
    background-size: cover;
}

button
{
    padding: 10px;
    border-radius: 10px;
    position: absolute;
    right: 20px;
    top: 20px;

    cursor: url(../cursors/wii-pointer-ccw.png), auto;
}

/* ================ */
/* LINKS */
/* ================ */

a,
a:visited
{
    color: var(--visited-color);
    text-decoration: none;
}

a:hover,
a:focus
{
    color: var(--focus-color);
    text-decoration: underline;
}

/* -------------------------------------------------------- */
/* LAYOUT OF THE COLUMNS */
/* -------------------------------------------------------- */

.columns
{
    display: flex;
    width: 100%;
    padding: 7px;
    column-gap: 7px;
}

/* -------------------------------------------------------- */
/* HEADER */
/* -------------------------------------------------------- */

header
{
    height: 150px;
    margin: 7px;
    background: url(../images/bgs/jellyfish-header.jpg);
    background-size: cover;
    border: 2px solid #97a0b8;
    border-radius: 15px;
    box-shadow: inset 0px 0px 4px 0px #dadada, 0px 2px 4px 0px #dadada;
}

.header-content
{
    padding: 25px;
    color: #ffffff;
    text-shadow: 0 0 4px #7e8aac, 0 0 4px #7e8aac, 0 0 4px #7e8aac;
}

/* -------------------------------------------------------- */
/* CONTENT */
/* -------------------------------------------------------- */

.mainboxheader
{
    text-align: center;
}

main
{
    width: 900px;
    padding: 30px;
    background: var(--background-color);
    line-height: 1.5;
    border: 2px solid #cbced8;
    border-radius: 15px;
    box-shadow: inset 0px 0px 8px 0px #dadada, 0px 2px 4px 0px #dadada;
}


/* STAMPS CONTAINER */

.stampscontainer
{
    display: flex;
    border: ridge #ffffff;
    border-radius: 50px;
    overflow: hidden;
    white-space: nowrap;
    width: 800px;
    background-color: var(--background-color);
    margin: auto;
}

.stamps
{
    animation: 80s stamps infinite linear
}

.stampscontainer:hover .stamps
{
    animation-play-state: paused
}

@keyframes stamps
{
    from
    {
        transform: translateX(0)
    }

    to
    {
        transform: translateX(-100%)
    }
}

/* -------------------------------------------------------- */
/* SIDEBAR */
/* -------------------------------------------------------- */

aside
{
    border-color: aliceblue;
    background: var(--background-color);
    padding: 15px;
    width: 20%;
    text-align: justify;
    border: 2px solid #c9c9c9;
    border-radius: 15px;
    box-shadow: inset 0px 0px 4px 0px #dadada, 0px 2px 4px 0px #dadada;
}

.right-sidebar
{
    width: 300px;
}

/* NAVIGATION */

nav
{
    margin-bottom: 25px;
}

/* iMOOD */

.imood
{
    margin-bottom: 30px;
    text-align: center;
}

/* STATUSBOX */

.statusbox
{
    text-align: center;
}

/* BLINKIES */

.blinkies
{
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: white aliceblue;
    height: 330px;
    margin-top: 20px;
    text-align: center;
}

.blinkies img
{
    width: 200px;
}

/* BADGES */

.badges img
{
    width: 150px;
    text-align: center;
}

/* CLIQUES */

.cliques
{
    text-align: center;
}

/* LAST.FM */

.ipod-container
{
    text-align: center;
    width: 220px;
    margin-left: 20px;
    background: #f5f3f3;
    border-radius: 20px;
    padding: 15px;
    box-shadow: inset 0 0 10px #fff, 5px 10px 20px #00000038;
    border: 3px outset #b4b4b467;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.ipod-screen
{
    background: #fff;
    height: 160px;
    border-radius: 8px;
    border: 3px solid #333;
    margin-bottom: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#listening
{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #333;
}

#listening p
{
    margin: 10px;
}

#listening iframe
{
    width: 100%;
    text-align: center;
    align-items: center;
    display: block;
}

/* --- THE CLICK WHEEL --- */
.click-wheel
{
    width: 140px;
    height: 140px;
    background: #d5d6df;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    border: 1px solid #d1d1d1;
    color: #a5a5a5;
    font-weight: bold;
    font-size: 10px;
}

.wheel-center
{
    width: 50px;
    height: 50px;
    background: #eee;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #d1d1d1;
}

.menu-button
{
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #f5f3f3;
}

.play-pause
{
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #f5f3f3;
}

.prev-button
{
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #f5f3f3;
}

.next-button
{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #f5f3f3;
}


/* LOG */

.log
{
    background-color: var(--background-color);
    border: ridge 3px;
    border-radius: 30px;
    line-height: 15px;
    padding: 10px;
    height: 300px;
    margin-top: 20px;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: white aliceblue;
}

.logtext
{
    font-size: 12px;
    text-align: left;
}

/* LOG */

.fanlistings
{
    margin-top: 20px;
    text-align: center;
}

.results
{
    background-color: var(--background-color);
    border: ridge 3px;
    border-radius: 30px;
    line-height: 15px;
    padding: 10px;
    height: 400px;
    margin-top: 20px;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: white aliceblue;
    font-size: 12px;
    text-align: center;
}

.quiztitle
{
    font-size: 18px;
}

.quiztext
{
    font-size: 12px;
}

#butterfly
{
    max-width: 200px;
    border: 1px solid;
}

#tighnari
{
    max-width: 200px;
    border: 1px solid;
}

#vaporeon
{
    max-width: 200px;
    border: 1px solid;
}

/* -------------------------------------------------------- */
/* IMAGES */
/* -------------------------------------------------------- */

.divider
{
    width: 260px;
}

/* -------------------------------------------------------- */
/* FOOTER */
/* -------------------------------------------------------- */

footer
{
    margin: 7px;
    border-style: groove;
    border-color: aliceblue;
    background: var(--background-color);
    overflow: hidden;
    text-align: center;
    border: 2px solid #c9c9c9;
    border-radius: 15px;
    box-shadow: inset 0px 0px 4px 0px #dadada, 0px 2px 4px 0px #dadada;
}

/* -------------------------------------------------------- */
/* MOBILE RESPONSIVE */
/* -------------------------------------------------------- */

@media screen and (max-width: 800px)
{
    body
    {
        width: fit-content;
    }
}