
/*TEXT SUFF*/
/* FONT IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Jersey+10&family=Jersey+20&display=swap');
.jersey-10-regular {
  font-family: "Jersey 10", sans-serif;
  font-weight: 400;
  font-style: normal;
}


  /* Text: */
  :root {--font: 'Jersey 10', sans-serif;
  --heading-font: Lucida Console, monospace;
  --font-size: 18px;

  /* Text Colors: */
  --text-color: #000000;
  --sidebar-text-color: #000000;
  
  /* Background Colors: */
  --background-color: rgb(15, 9, 24);
  --content-background-color:rgb(131, 131, 131);
  --sidebar-background-color: rgb(131, 131, 131);

  /* Other Settings: */
  --margin: 5px;
  --padding: 10px;
  --border: .5px solid #422525;
  --round-borders: 0px;
  --sidebar-width: 240px;
}
* {
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-size: var(--font-size);
  margin: 0;
  padding: var(--margin);
  color: var(--text-color);
  font-family: var(--font);
  line-height: 1.2;
  background: var(--background-color);
  background-image: url(https://dantedemondino.neocities.org/Images/backgrounds/qai50006.jpg);
  
}

/*CAREFUL ABOVE THIS POINT!*/

.parent {

  
display: grid;
grid-template-columns: repeat(8, 1fr);
grid-template-rows: repeat(4, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;

width: 600px;
height: 800px;
}

.window { grid-area: 1 / 3 / 4 / 7; 
  
background-image: linear-gradient(to bottom, rgb(141, 135, 143), rgb(53, 49, 56));
background-color: blue;
width: 600px;
height: 500px;
border:inset , 15px, rgb(133, 38, 0);
background-image: url(https://dantedemondino.neocities.org/Images/backgrounds/shal.png);
background-size: 130%;
background-position: center;
}

.table { grid-area: 3 / 3 / 4 / 7; 
background-image: url(https://dantedemondino.neocities.org/Images/backgrounds/CEDFENCE.JPG);
background-repeat: repeat;
  justify-items: center;
background-color: rgb(21, 255, 0);
width: 600px;
height: 200px;
border:inset , 5px, rgb(133, 75, 0);
}

.diagbox { grid-area: 4 / 3 / 5 / 7; 
  

background-color: rgb(0, 0, 0);
width: 600px;
height: 150px;
border:double,8px, white;
border-radius: 5px;

display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
align-content: center;
}

#diag{ background-color: rgb(255, 0, 0);
  margin: 5px;
  width: auto;
  height: auto;
}




/*Item Menu*/
.parent2 {
 
display: grid;
grid-column-gap: 0px;
grid-row-gap: 0px;
grid-template: "keeper items" /2fr 1fr;
width: 100%px;
height: 100%px;
}

.items { grid-area: items;
width: 200px;
height: 500px;
}
#stuff{
background-color: rgb(0, 0, 0);
border:double,8px, white;
width: 80%;
height: 70%;
margin: 5px;

display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: flex-start;
align-content: flex-start;

}

#item{ background-color: rgba(0, 0, 0, 0.493);
  margin: 5px;
  width: 45px;
  height: 45px;
  justify-content: center;
}




.keeper { grid-area: keeper; 
 display: flex;
flex-direction: column;
justify-content: center;
align-content: flex-end;
width: 400px;
height: 500px;}

#venire{
 align-items: flex-end;
 display: flex;
width: 400px;
bottom: -5px;
position:relative;
}
