
/* - 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;
}

body {
    background-color: white;
    height: 100vh;
}

p, h2, h3, li {
    font-family: "Jersey 15";
}

.parent {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: repeat(1, 1fr);
    gap: 15px;
    height: 100%;
    padding: 15px;
}

.birdarchive {
    padding: 15px;
    border: solid 2px black;
    color: black;
}

.birdarchive h2 {
    text-align: center;
    font-family: "Jersey 15";
    letter-spacing: 3px;
    font-size: 2em;
    margin-bottom: 15px;
}

.birdlist {
    height: 250px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.birdentry {
    background-color: white;
    padding: 10px;
    text-transform: uppercase;
    text-align: center;
    border: solid 2px black;
    box-shadow: 5px 5px black;
}

.birdname {
    font-size: 20px;
    margin-bottom: 10px;
}

.birdimg {
    background-color: brown;
    height: 150px;
    margin-bottom: 5px;
    border: solid 2px black;
    
    background-size: cover;
    filter: grayscale(100%);
}

.birdimg:hover {
    filter: none;
}

/* ---- ARCHIVE SECTION ---- */

/* ---- UPDATE SECTION ---- */

.updates {
    padding: 15px;
    height: 100%;
    color: white;
    background-color: black;
}

.updates h2 {
    text-align: center;
    font-family: "Jersey 15";
    letter-spacing: 3px;
    font-size: 2em;
    color: white;
}

.updates a {
    color: var(--accent);
}
.updates hr {
    border: none;
    border-top: solid 2px white;
    margin: 10px -15px;
}

.updatelog {
    height: 590px;
    padding: 10px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: black;
    border: solid 1px white;
}

.update-entry {
    font-family: "Jersey 15";
    border-bottom: solid 1px white;
    padding-bottom: 10px;
}

.update-entry:last-child {
    border-bottom: none; 
}

/* --- UPDATE SECTION SCROLLBARS --- */
.updates,
.updatelog {
  scrollbar-color: var(--white) black;
  scrollbar-width: thin;
}

.updates::-webkit-scrollbar,
.updatelog::-webkit-scrollbar {
  width: 2px;
}

.updates::-webkit-scrollbar-track,
.updatelog::-webkit-scrollbar-track {
  background: black;
}

.updates::-webkit-scrollbar-thumb,
.updatelog::-webkit-scrollbar-thumb {
  background-color: var(--white);
}

.updates::-webkit-scrollbar-corner,
.updatelog::-webkit-scrollbar-corner {
  background: black;
}