/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: "Times New Roman";
}

h1{
  font-family: "Barriecito";
}

.barriecito-regular {
  font-family: "Barriecito", system-ui;
  font-weight: 400;
  font-style: normal;
}

h2{
  font-family: "Barriecito";
}

.special-elite-regular {
  font-family: "Special Elite", system-ui;
  font-weight: 400;
  font-style: normal;
}

.typewriter {
  font-family: "Special Elite", system-ui;
}
.bluetext {
  color: blue;  
}
.yuckyyellow {
  color: #b5b012; 
}
.blueline {
  color: #4d9cc4;
}
/*.homepageborder {*/
/*  background-color: yellowgreen;*/
/*  padding: 20px;*/
/*  min-height: 100vh;*/
/*  display: flex;*/
/* }*/
 .homepageinventoryborder {
   background-color: cornflowerblue;
   box-shadow: 0px 0px 20px 20px inset royalblue;
   padding: 4%;
   /*min-height:1vh;*/
   display: flex;
   border-top: darkblue solid 15px;
   position: absolute;
   top:710px;
   right: 0px;
   left: 0px;
   bottom: 0px;
   /*height: 40vh;*/
}
 /*.homepageinventory {*/
 /* background-color: cornflowerblue;*/
 /* box-shadow: 0px 0px 20px 20px inset royalblue;*/
 /* padding:100px;*/
 /* min-height:1vh;*/
 /* display: flex;*/
 /* align-items: flex-end;*/
 /* top:725px;*/
 /* right: 0px;*/
 /* left: 0px;*/
 /* bottom: 0px;*/
/*}*/
.homepageborder2 {
  background-color: darkolivegreen;
  padding: 8px;
  min-height: 100vh;
  flex:1;
 }
.homepageinterior{
  background-color: lightyellow;
  box-shadow: 0px 0px 10px 10px inset palegoldenrod;
  margin-top: 2%;
  border-top: darkolivegreen solid 20px;
  border-left: darkolivegreen solid 8px;
  border-right: darkolivegreen solid 8px;
  padding: 1%;
  margin-left: 2%;
  margin-right: 2%;
  height:80vh;
  flex:1;
}
  