/* - 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 {
    font-family: "Jersey 15";
    margin-left: 15px;
    margin-bottom: 10px;
}

a {
    font-family: "Jersey 15";
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
}

h2, h3 {
    font-family: "Jersey 15";
    letter-spacing: 2px;
    margin: 5px 0;
}

body {
    background-color: black;
}

.container {
    width: 80vw;
    height: 100vh;
    margin: 0 auto;
    
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 15px;
    
    position: relative;
}

.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;
}

.borb {
    position: absolute;
    bottom: 10px;
    right: 160px;
    height: 150px;
    width: 150px;
}