@font-face {
	font-family: 'northface';
	src: url('./northface.ttf') format('truetype');
        font-display: swap;
}

@font-face {
	font-family: 'bluevinyl';
	src: url('./bluevinyl.otf') format('opentype');
}

body {
	margin: 50px;
	padding-bottom: 20px;
	outline-style: solid;
	outline-color: rgb(95,46,40);
	outline-width: 50px;
	border-style: solid;
	border-width: 25px;
	border-color: rgb(108,109,96);
	background-color: rgb(217,213,200);
        font-family: 'northface', serif;
}

h1 {
	text-align: center;
	color: rgb(157,139,101);
	font-family: 'northface';
	font-size: 3em;
}

.redletter {
	text-align: center;
	color: rgb(95,46,40);
	font-family: 'northface';
	font-size: 2em;
}

.image-row {
	display: flex;
	flex-wrap: wrap;
}

.image-row img {
	flex: 1;
	width: 33.33%;
	height: auto;
	margin: 0;
	padding: 0;
}

.socials {
	font-family: "bluevinyl";
}

a {
	text-decoration: none; 
}

a:visited {
    color: rgb(95,46,40); /* Make it the SAME color as the unvisited link */
}

a:link {
    color: rgb(95,46,40); /* Or whatever color you want for unvisited links */
}



@media (max-width: 992px) {
	.image-row {
		flex-direction: column;
	}
	.image-row img {
		width: 100%;
		height: auto;
	}
}

.tooltip {
	font-family: 'northface', sans-serif !important;
	font-size: 1em;
	color: rgb(95,46,40);
	position: relative;
	display: inline-block;
	cursor: pointer;
	text-align: center;
}

.tooltip .tooltiptext {
	font-family: 'northface', sans-serif;
	font-size: 0.5em;
	line-height: 1.2;
	visibility: hidden;
	width: 300px;
	background-color: #333;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 10px;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -150px;
	opacity: 0;
	transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}

.tooltip .tooltiptext img {
	width: 150%;
	height: auto;
	border-radius: 4px;
	bottom: 50%;
	left: 105%;
	transform: translateY(75%);
}

.shrink {
	font-size: 0.8em;
	line-height: 0.5 !important;
}

table {
	width: 100%;
}

td {
	text-align: center;
}
