* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #fff;
    background-image: url(/images/assets/orange_curtains.png), url(/images/assets/card_divider.png), url(/images/backgrounds/80s_wallpaper.webp);
    background-repeat: no-repeat, no-repeat, repeat;
    background-size: 150% auto, contain, auto;
    background-position: 50% 50%, bottom;
    color: #111;
    font-family: 'Times New Roman', Times, serif;
    cursor: url(/images/icons/gauntlet.png), auto;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #bf8251 #d8bf8e;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 16px;
}

*::-webkit-scrollbar-track {
    background: #d8bf8
}

*::-webkit-scrollbar-thumb {
    background-color: #d8bf8;
    border-radius: 10px;
    border: 3px none #bf8251;
}

::selection {
    background: #b96882
}

.special-elite-regular {
    font-family: "Special Elite", system-ui;
    font-weight: 400;
    font-style: normal;
}

.computer {
    background-image: url(/images/assets/computer.PNG);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 30vh;
    font-family: "Special Elite", system-ui;
    font-size: 1.5rem;
    padding-bottom: 80px;
}

.computer:hover {
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
}

.label {
    background-image: url(/images/assets/red_swirl_label.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 50px;
    font-family: "Special Elite", system-ui;
    font-size: 1.5rem;
}

.label:hover {
    -webkit-transform: rotate(3deg);
    -moz-transform: rotate(3deg);
    -o-transform: rotate(3deg);
}

.headerwrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background-image: url(/images/assets/computer_room.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.title {
    color: #fff;
    letter-spacing: 0.2rem;
    text-shadow: 0 0 10px #111;
    font-family: 'Questrial', sans-serif;
}

.nav {
    background-color: #86ada4;
    width: 100%;
    text-align: center;
    font-size: 1.08rem;
    padding: 0.5rem 0 0.5rem 0;
    border: 0.8em solid;
    border-image-slice: 130 125 125 130;
    border-image-outset: 0px 0px 0px 0px;
    border-image-repeat: stretch stretch;
    border-image-source: url(/images/frames/painting_frame.png);
}

.nav ul {
    display: flex;
    justify-content: space-around;
}

.nav li {
    display: inline;
}

.mainwrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem 1rem 1rem;
    margin: 0 auto;
    max-width: 700px;
}

.box {
    background-image: url(/images/backgrounds/plain_cloth.jpg);
    border: 0.8em solid;
    border-image-slice: 130 125 125 130;
    border-image-outset: 0px 0px 0px 0px;
    border-image-repeat: stretch stretch;
    border-image-source: url(/images/frames/painting_frame.png);
}

.subheaders {
    color: white;
    font-family: "Special Elite", system-ui;
    font-weight: normal;
    font-size: 18px;
    text-shadow: 1px 1px 4px #17362e;
    background-color: #86ada4;
    padding: 8;
}

.content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

a {
    text-decoration: none;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgb(61, 47, 25);
    cursor: url(/images/icons/gauntlet.png), auto;
}

a:visited {
    color: #ffffff;
}

#credit a {
    text-decoration: none;
    background: linear-gradient(90deg, rgba(250, 31, 193, 1) 0%, rgba(29, 85, 255, 1) 25%, rgba(13, 246, 252, 1) 53%, rgba(0, 255, 102, 1) 77%, rgba(251, 255, 56, 1) 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

#credit a:visited {
    text-decoration: none;
    background: linear-gradient(90deg, rgba(250, 31, 193, 1) 0%, rgba(29, 85, 255, 1) 25%, rgba(13, 246, 252, 1) 53%, rgba(0, 255, 102, 1) 77%, rgba(251, 255, 56, 1) 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

a:hover {
    font-style: italic;
    color: rgb(124, 176, 221);
}

a:active {
    font-style: italic;
    font-weight: bold;
}

.nav a {
    color: white;
    text-decoration: none;
}

.nav a:visited {
    text-decoration: none;
    color: white;
}

#credit {
    position: fixed;
    bottom: 0;
    right: 0;
    font-size: 12px;
}

@media screen and (max-width:769px) {
    .nav {
        font-size: 0.75rem;
    }
}