:root {
    
    /* fonts */
    font-family: "Barlow Condensed", sans-serif;
    --text-size: 16px;


    /* colors*/
    --text: #4f790f;
    --background: #ffffff;
    --accent-dark: #0000;
    --accent: #ffad25;
    --accent-light: #98d33d;

    /* misc styling */
    --max-width: 960px;
    --min-width: 500px;
    --height: 700px;
    --spacing: 30px;
    --border-radius: 30px;

    /* calculations - don't worry about this */
    --halfspacing: calc(var(--spacing) / 2);
    --doublespacing: calc(var(--spacing) * 2);

    
}



.flex{
    display: flex;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

body {
    max-width: var(--max-width);
    min-width: var(--min-width);
    max-height: 600px;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: var(--spacing) 20%;
    margin: var(--spacing)  auto;
    background-image: url('https://64.media.tumblr.com/1a9fd39c4ab50e558f61d7bdaa7b3bb6/8919022821898254-b8/s2048x3072/541fd61b1530260a98b9295eb0019995f745b647.pnj');
    
}

#page_grid {
    display: grid;
    grid-template-columns: repeat(12, 76px);
    grid-template-rows: repeat(12, 60px);
    grid-gap: 0px;
    background-color: var(--background);
    border-radius: var(--border-radius);
}

nav {
    display: flex;

}

.box {
    margin: 10px;
    padding: 5px;
}

.description {
    font-size: var(--text-size);
    color: var(--text);
    margin-top: -5px;
}

/* nav buttons */
nav a {
    background-color: var(--accent-light);
    border: none;
    color: var(--text);
    border-radius: var(--border-radius);
    padding: 4px 10px;
    margin: 10px 25px -15px 25px;
    width: 150px;
    height: 22px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    font-family: var(--basefont);
    font-size: 22px;
    cursor: pointer;
    font-style: italic;
    
}

/* orange buttons */
button {
    background-color: var(--accent);
    border: none;
    color: #ffffff;
    border-radius: var(--border-radius);
    margin: 4px;
    width: 100px;
    height: 20px;
    text-align: left;
    font-family: var(--basefont);
    font-size: 16px;
    cursor: pointer;
    position: relative;
    top: -90px;
    left: 90px;
}

button :hover {
    background-color: var(--accent-dark);
    color: var(--accent);
}

.scrollbox {
    width: 250px;
    height: 220px;
    overflow-y: scroll;
    padding: 10px;
    margin: 15px 40px 0px;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--accent);
}




/* assets */

.underconstruction {
    grid-column: 3 / 5;
    grid-row: 3 / 4;
    z-index: 2;
    
}

.gummie_float {
    width: 100%;
    height: 100%;
    background-image: url('https://files.catbox.moe/r2feet.gif');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}

#ID_tag {
	grid-area: 1 / 1 / 4 / 7;
    margin-top: 20px;
    margin-left: 20px;
	}

#BG_dots {
	grid-area: 2 / 7 / 4 / 10;
}

#planet_ID {
	grid-area: 8 / 1 / 12 / 9;
    margin-left: 20px;
    margin-top: 15px;
}

#box {
	grid-area: 5 / 2 / 9 / 6;
}


#gallery {
	grid-area: 2 / 9 / 6 / 11;
    background-color: var(--background);
    border: black solid 10px;
    margin-top: 20px;
    margin-left: 40px;
    height: 250px;
    width: 250px;
    border-radius: var(--border-radius);
}

#gallery_buttons {
	grid-area: 4 / 7 / 5 / 9; 
    margin-top: 10px;  
     margin-left:30px;
}

#gallery_buttons button {
    font-size: 18px;
}

#gallery > img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
}

#whatsup {
	grid-area: 7 / 9 / 12 / 13;
    max-width: 360px;
    margin-top: -20px;
    margin-left: -30px;
    margin-bottom: -20px;
}

#gummie_float {
	grid-area: 3 / 5 / 9 / 9;
}



