@font-face {
    font-family: win95;
    src: url(W95FA.otf);
}

/* start light/dark unified styling */
:root {
    --text: white;
    --border: grey;
    --accent: #8857d8;
    --bg: black;
    --gradientTop: black;
    --gradientBottom: #1a001a;
}

button {
    background-color: #8857d8;
    color: #fff;
    font-family: win95, sans-serif;
    cursor: url("/images/pointer.cur"), auto;
}

body {
    font-family: "win95", sans-serif;
    color: var(--text);
    margin: 0;
    padding: 0;
    background-color: var(--bg);
    background-image: url("sparklespace.png");
    cursor: url("images/arrow.cur"), auto;
    background-size: cover;
    background-repeat: repeat;
}

/* container styling */
.container {
    max-width: 55rem;
    margin: 5vw auto 12px auto;
    border: 6px ridge var(--border);
    outline: 3px solid var(--accent);
    outline-offset: 4px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
    gap: 5px;
    background-color: var(--bg);
}

/* columns */
.small {
    flex: 1 1 9%;
}
.large {
    flex: 1 1 82%;
}
.full {
    flex: 1 1 100%;
}
.half {
    flex: 1 1 49%;
}

a {
    color: white;
    cursor: url("images/pointer.cur"), auto;
}

/* header styling */
header {
    /* background: url('/images/roblox_logo.png') center/cover no-repeat; */
    background-color: var(--bg);
    width: 100%;
    height: 120px;
    border: 2px ridge var(--border);
    border-radius: 5px;
    position: relative;
}
header span {
    font-size: 2.5rem;
    position: absolute;
    bottom: 0;
    right: 10px;
    margin: 10px;
    font-weight: bold;
    text-shadow:
        1px 1px black,
        -1px 1px black,
        1px -1px var(--accent),
        -1px -1px var(--accent);
    color: white;
}

/* navigation styling */
nav {
    border: 2px ridge var(--border);
    border-radius: 5px;
    padding: 5px;
    background-color: var(--bg);
}
nav div {
    text-align: center;
    font-size: 1.25rem;
    margin: 5px 5px 10px 5px;
}
nav a {
    display: block;
    margin: 5px;
    background-color: var(--accent);
    border-radius: 3px;
    padding: 2px 7px;
    text-decoration: none;
    color: white;
}
nav a:hover,
nav a:focus {
    background-color: var(--accent);
    color: rgb(226, 226, 226);
}

/* section styling */
section {
    border: 2px ridge var(--border);
    border-radius: 5px;
    background-color: black;
    padding: 5px;
}

/* footer */
footer {
    text-align: center;
    margin-bottom: 5vw;
    font-size: 0.8rem;
}
footer a {
    text-decoration: none;
    color: white;
}

/* text elements */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 5px;
    line-height: 1.2;
}
h1 {
    font-size: 1.4rem;
    letter-spacing: 2px;
    font-weight: normal;
    text-align: center;
    border-bottom: 2px ridge var(--border);
    padding-bottom: 5px;
}
h2 {
    font-size: 1.25rem;
    font-weight: normal;
    text-align: center;
}
h3 {
    font-size: 1.1rem;
}
h4 {
    font-size: 1rem;
    color: var(--accent);
    padding-left: 12px;
}

/* buttons & images */
.copy-button {
    border: 1px solid black;
    background-color: black;
    color: white;
    font-family: "win95", sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 5px 10px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    border-radius: 3px;
    transition:
        background-color 0.3s,
        color 0.3s;
}
div.small > img {
    display: block;
    margin: 5px auto;
    border: 2px ridge var(--border);
    border-radius: 5px;
}
