 /*Declarations */
:root {
  --color1: #ff7dbb;
  --color1Dark: #BB1D8C;
}

@font-face { 
	font-family: "Wild World"; 
	src: url("/fonts/Animal-Crossing-Wild-World.ttf") format("truetype");
	font-weight: normal;
	font-style: normal; 
	font-display: sans; 
}

@font-face { 
	font-family: "Pirkkala"; 
	src: url("/fonts/pirkkala.ttf") format("truetype");
	font-weight: normal;
	font-style: normal; 
	font-display: sans; 
}

body {
  margin: 0;
  /*   background */
  background-image: url("https://bettysgraphics.neocities.org/images/backgrounds/pattern%20238.gif");
  background-repeat: repeat;
  
  
  font-family: "Wild World", sans;
  font-weight: 400;  /*use a value from 100-900*/
  font-style: normal;
  font-smooth: never;
  -webkit-font-smoothing : none;
  font-size: 1rem;
  font-size-adjust: ex-height 0.55;
  letter-spacing: .08em;
  line-height: 1.2;  
  }
  
/*Everything goes inside here.*/

.imgBox{
  border: 2px dotted #fcf801;
  padding: 0;
  background-color: white;
 }
 
 /*Prevent image overflow.*/
.imgBox img {
  max-width: 100%;
  height: auto;
  display: inline;
  text-align: center;
  }

/*About Page Customizations*/
.aboutImg {
	display: revert;
	text-align: center;
}

.bioBlock {
	display: inline-block;
}


/*End About Page*/

/*Blog page customizations*/

.blogBody ul {
	list-style-type: none;
}

/*End blog page*/

.wrapper {
  width: 900px;
  margin: 0 auto;
  }
  
.sidebar-img, .footer, .title, .links, .box, .imgBox {
  margin-top: 25px;
  }
  
.sidebar ul {
	padding: 0 0 0 1.5em;
    list-style-image: url("/img/bullet.png");
}

.credits ul {
	display: inline-block;
    list-style-type: none;
}

.blankList ul {
	list-style-type: none;
}

.credits img {
	display: inline;
	max-width: 100%;
    height: auto;
    margin: 0 !important;
}

.mediaImg {
	min-width: 100%;
}
  
.title, .links, .footer {
  text-align: center;
  }
  
h1 {
  font-family: "Pirkkala", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 4em;
  text-align: center;
  
  margin: -.1em 0 0 0;
  
  background: linear-gradient(180deg, #5F80FF 20%, #f0549e 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
  
/*Navigation links.*/
a {
  color: var(--color1Dark);
}

.links ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  }
  
.links li {
  display: inline-block;
  }

/*Some fancy code for fun, to add special characters around the navigation links. Change content to "" if you don't want these.*/
.links li:before {
  content: " ✮. ";
  }
  
.links li:after {
  content: " .✮. ";
  }
  
.links .last:after {
  content: " ";
  }
  
.links li:before, .links li:after {
  letter-spacing: 0.1em;
  }
  
/*Basic box code that is used for all content boxes on the page.*/
.box {
  border: 2px dotted #fcf801;
  padding: 0.5em 1em;
  background-color: white;
  }
  
/*Goes inside the box class. Not given any style by default, but can be used for stuff like fancy borders.*/
.inner {
  }
  
/*Prevent image overflow.*/
.box img, .sidebar img {
  max-width: 100%;
  height: auto;
  display: inline;
  text-align: center;
  }
  
.gallery {
	display: revert;
	text-align: center;
}

/*Wrapper for the sidebar.*/
.sidebar {
  width: 200px;
  float: left;
  margin-bottom: 20px;
  }
  
/*Container for the sidebar image.*/
.sidebar-image {
  border: 1px solid black;
  }
  
/*Remove extra padding line at the bottom of the image.*/
.sidebar-image img {
  display: block;
  }
  
/*This is where the title, navbar, and main content all go.*/
.main-wrapper {
  margin-left: 225px;
  margin-bottom: 20px;
  }
  
/*Two columns by default. The "single-column" class can be added to make it one column.*/
.main {
  columns: 2;
  column-gap: 25px;
  }
  
/*Make sure boxes don't spread over multiple columns.*/
.main .box {
  display: inline-block;
  }
  
.single-column .box {
	display: revert;
}
  
.single-column {
  columns: 1;
  }
  
.footer {
  margin-bottom: 25px;
  }
  
.picList {
  
}
  
@media(max-width:915px) {
  .wrapper {    
    width: 95%;
    }
    
  .main-wrapper {
    width: calc(100% - 225px);
    }
  }
  
@media (orientation: portrait), (max-width: 480px) {
  .wrapper {
    width: 100%;
    }
  
  .main-wrapper, .sidebar, .footer {
    margin: 0 auto;
    width: 90%;
    }
  
  .sidebar {
    float: none;
    display: block;
    }

  .sidebar-image {
    margin: 0 auto;
    width: 33%;
    margin-top:25px;
    }

  .sidebar .sidebar-image img {
    width: 100%;
    }
    
  .footer {
    margin-bottom: 25px;
    }
  
  }
  
.blogBody ul {
    list-style-type: none;
}

.collection .box {
	  padding: 0; !important
}

.collectionContent {
	padding: 1em;
	text-align: left;
}
