/* 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." */
	
    @font-face {
		font-family: '000webfont';
		src: url('fonts/000webfont.ttf');
	}
	
.silkscreen-regular {
  font-family: "Silkscreen", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.silkscreen-bold {
  font-family: "Silkscreen", sans-serif;
  font-weight: 700;
  font-style: normal;
}
	
	@font-face {
		font-family: 'Nintendo-DS-BIOS.ttf';
		src: url('fonts/Nintendo-DS-BIOS.ttf');
	}
	
	/*index.html*/
	.wrapper {
		display: grid;
		grid-template-columns: 200px 666px 200px;
		justify-content: center;
		margin: 0 auto;
		padding: 7px;
	}

	.header {
		background-color: white;
		border: 2px solid black;
		width: 975px;
		margin: auto;
		margin-top: 15px;
		padding: 12px;
	}
	
	.left {
		width: 100px;
		background-color: white;
		border: 2px solid black;
		padding: 18px;
    margin-top: 40px;
	}
	

	.right {
		width: 311px;
		background-color: white;
		border: 2px solid black;
		padding: 10px;
	}
	
	.main {
		width: 650px;
		background-color: white;
		border: 2px solid black;
		padding: 25px;
    
	}
	
	.updates {
		height: 228px;
		background-color: #FFFFFF;
		border: 1px solid black;
		overflow-y: scroll;
		padding: 8px;
    
	}
	
	.navlink {
		display: block;
	}
	
	/*links.html*/
	.linkwrapper {
		height: 580px;
		width: 740px;
		margin: 0 auto;
		position: relative;
	}
	
	.linkcontent {
		height: 560px;
		width: 740px;
		background-color: white;
		border: 2px solid black;
		overflow-y: scroll;
	}
	
	.beetle {
		position: absolute;
		left: -40px;
		bottom: -65px;
	}
	
	.linkcontent h3 {
		background-color: black;
		color: white;
		margin: 0;
		padding: 5px;
		font-family: "ms gothic";
		font-size: 12px;
		letter-spacing: 2px;
	}
	
	/*toybox.html*/
	#toybox {
		background-color: #FFFFFF;
		width: 600px;
		margin: auto;
		border: 5px solid #fff5bf;
		text-align: center;
		padding: 10px;
	}
	

	/*gallery*/
	.mainbox {
		background-color: white;
		border: 5px ridge #a9a9a9;
		height: 500px;
		display: grid;
		grid-template-columns: 157px 655px;
		grid-template-areas: "lft rght" "lft rght";
		position: relative;
	}
	
	.side {
		grid-area: lft;
		padding: 7px;
		border-right: 1px solid black;
	}
	
	.mf {
		grid-area: rght;
	}
	
	.rei {
		position: absolute;
		right: -82px;
		bottom: -15px;
	}
	
	/*teeny towers*/
	#towerdiv {
		margin-left: auto;
		margin-right: auto;
		width: 500px;
		line-height: 60%;
		letter-spacing: -4px;
		padding: 0;
		background-image: url("graphics/!polaroidBG_FA_day.png");
		border: 1px dashed black;
		border-radius: 5px;
	}
	
	/*about*/
	.abtwrapper {
		height: 450px;
		width: 850px;
		margin: auto;
		margin-top: 40px;
		display: grid;
		grid-template-columns: 590px 240px;
		grid-template-areas: "lft rght" "lft rght"; 
		gap: 5px;
		position: relative;
		margin-bottom: 10px;
	}
	
	.me {
		grid-area: lft;
		background-color: white;
		border: 2px solid black;
		padding: 5px;
		padding-left: 10px;
		overflow-y: scroll;
	}
	
	.bio {
		grid-area: rght;
		background-color: white;
		border: 2px solid black;
		padding: 10px;
		overflow-y: scroll;
	}
	
	img.a {
		width: 200px;
		border: 1px solid black;
	}

/* Only affects the first table in .left column */
.wrapper > div:first-child table {
    border-collapse: separate; /* ensure spacing works */
    border-spacing: 10px;    /* 0 horizontal, 20px vertical */
}

.wrapper > div:last-child table {
    border-collapse: separate; /* ensure spacing works */
    border-spacing:  10px;    /* 0 horizontal, 20px vertical */
}



	/* Start https://www.cursors-4u.com */ * {cursor: url(https://cur.cursors-4u.net/food/foo-7/foo631.cur), auto !important;} /* End https://www.cursors-4u.com */