/* Load Fonts */

/* Basteleur by Keussel
https://uncut.wtf/display/basteleur/ */ 
@font-face {
  font-family: "basteleur"; 
  src: url("Fonts/Basteleur-Bold.ttf") format("truetype");
  }

/* General Styling */

body {
    
  /* bg image from https://textures.neocities.org */
  background-image: url("/cloverbg.png");
  color: black;
  font-family: serif;
  font-size: 1.5vw;
}

h1, h2 {
  font-size: 4em;
  font-family: 'basteleur', serif;
  color: green;
  text-align: center;
  line-height: 1em;
  text-shadow: 5px 5px 5px lightgrey;
  }
  
h2 {
  font-size: 2em !important;
  }
  
ul{
  font-size: 1em;
  }
  

/* Specific styling for Error page */
.not-found{
  /* div box */
  background-color: white;
  margin: 10% 20%;
  vertical-align: middle;
  padding: 1vw;
  box-shadow: 0px 0px 20px 5px black ;
  /* border */
  border-width: 20px;
  border-color: gold;
  border-style: ridge;
  /* text */
  color: green;
  text-align: center;
  line-height: 2em;
  text-shadow: 5px 5px 5px lightgrey;
  }
  
  /* Styling for dotless lists */
.nodot{
  list-style-type: none;
  padding: 0;
  font-family: serif;
  }
  
  /* Bolds and Underlines dates */
.listDate{
  font-weight: bold;
  text-decoration: underline;
  }
  
  /* Basically just makes any image inline so I can use it as an emoji lol. */
.emoji{
  display: inline;
  vertical-align: middle;
	margin-inline: auto;
	width: 1.5vw;
    }

/*Add with emoji tag when u want to use one in a header*/
.bigEmoji{
  width: 6vw !important;
  }
    
/* styles the gold heart border */
.divider{
  display: block;

  /*change width to fit middle box*/
  width: 60%;
  margin: auto;
  }
  
/*centers an image*/
.centered{
  display: block;
  margin: auto;
  }

/*Layout*/
.wrapper{
	display:flex;
	flex-flow: row wrap;
	padding: 0;
	margin:0;
	text-align: center;
  }
  
/*Center Box*/  
.main{
  background: white;
  width: 60%;
  height: 40vw;
  overflow: auto;
  padding: 1vw;
  margin: auto;
    /* border */
  border-width: 20px;
  border-color: gold;
  border-style: ridge;
  }

/*makes slideable gallery to view images*/
.gallery{
  overflow: auto;
  white-space: nowrap;
  padding: 10px;
    }
    

.gallery img {
  height: 10vw;
  padding: 0.5vw;
  }