/* - FONT LIST!
 * font-family: Chelsea Market;
 * font-family: Protest Riot;
 * font-family: "Jersey 15";
 *  -*/

* {
    --white: #fff;
    --accent: #fffc00;
    --accent2: #499652;
    --accent3: #14483D;
    --accent4: #052E30;
    
    margin: 0;
    padding: 0;
    
    image-rendering: pixelated;
    box-sizing: border-box;
}

p, h6 {
    font-family: "Jersey 15";
}

li {
    font-family: "Jersey 15";
    font-size: 18px;
}

a {
    font-family: "Jersey 15";
    color: var(--accent);
    text-decoration: none;
}

h2, h3 {
    font-family: "Jersey 15";
    letter-spacing: 2px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 26px;
}

h6 {
    font-size: 24px;
    letter-spacing: 3px;
}

body {
    background-color: black;
}

.container {
    width: 80vw;
    height: 100vh;
    margin: 0 auto;
    
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 15px;
}

.div {
    margin-top: 18px;
    background-color: black;
    padding: 20px;
    padding-right: 10px;
    color: white;
    overflow-y: auto;
    height: 95%;
    border: solid 2px white;
}

.divco {
    background-color: black;
    
    padding-right: 30px;
    height: 100%;
    color: white;
    overflow-y: auto;
    width: 550px;
}

.sitelist {
    display: grid;
    grid-template-columns: repeat(4,88px);
    gap: 3px;
}

.div ul {
    margin-left: 10px;
    list-style: none;
}

.div li {
    margin-bottom: 5px;
}

.line {
    border: none;
    border-bottom: solid 1px white;
    margin: 10px 0;
}

.small {
    width: 40%;
    margin: 2px 0;
    border-bottom: dotted 1px white;
}

.divco::-webkit-scrollbar-track
{
	background-color: black;
}

.divco::-webkit-scrollbar
{
	width: 10px;
	background-color: black;
}

.divco::-webkit-scrollbar-thumb
{
	background-color: black;
	border: 2px solid white;
}