h1, h2, h3, p, img {
  padding: 5px;
}

ul li {
  list-style-image: url('list style image.png');
}

a {
  color: #850000;
}

a:hover {
  color: #F3A757;
}
  
body {
  background:
        /* top, transparent black, faked with gradient */ 
        linear-gradient(
          rgba(0, 0, 0, 0.2), 
          rgba(0, 0, 0, 0.2)
        ),
        /* bottom, image */
        url("background.jpg");
  background-size: 100vw;
  background-position: center;
}

main {
  margin: auto;
  min-width: 900px;
  max-width: 1200px;
  background: white;
  border: dotted 2px #850000;
  box-shadow: 2.426rem 2.694rem 0rem 0rem #802424cc;
  border-radius: 12px;
}

main#index {
	margin-top: 5%;
	margin-bottom: 5%;
	width: 50%;
}


img {
  max-width: 50vw;
  max-height:50vh;
  object-fit: contain;
}

h1, .ruslan-display-regular {
  font-family: "Ruslan Display", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h2, .rustic {
  font-family: "Ribeye Marrow", serif;
  font-weight: 400;
  font-style: normal;
}

.fancy {
  font-family: "Fascinate Inline", system-ui;
  font-weight: 400;
  font-style: normal;
}

.fancy, .highlighted {
  background-color: #F3A75775;
  font-style: italic;
}

p, ul, .galindo {
  font-family: "Galindo", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.spray {
  font-family: "Rubik Spray Paint", system-ui;
  font-weight: 400;
  font-style: normal;
}

.papermask {
  -webkit-mask-image: url(https://i.ibb.co/KhqQW5x/73696-B1-E-A0-D7-4529-B2-D2-FB27-F0-D5-B437.png);
  -webkit-mask-size: 90%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.lace {
  border-width:7px;
  border-style:solid;
  border-image: url("https://static.tumblr.com/yn7vk7p/DfHmp40xm/bo-ha26.gif") 8 fill round;
}

.blinkie {
  width: 150px;
  height:20px;
}


section.navbar {	
	position: fixed;
	top: 0px;
	left: 0px;
	height: 70px;
	width: 100%;
}

	section.navbar ul {
		background-color: #f4b266;
		height: 30px;
		width: 95vw;
		padding-left: 0px;
		
		margin-top: 20px;
		margin-right: 10px;
		margin-left: 20px;
	}


	section.navbar li {
		display: inline-block;
		margin-top: -5px;
	}

	section.navbar a {
		text-decoration: none;
		color: #632912;
	}

	section.navbar a:hover {
		color: #bf442b;
	}

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
	scrollbar-width: auto;
    scrollbar-color: #fbc48e #bf442b;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #bf442b;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #fbc48e;
    border-radius: 10px;
    border: 3px solid #ffffff;
  }