/* 	File Name: shared.css		Description: Shared SStylesheet
	Date Revised: Jan. 10, 2026	Author: Ronald B. Kopelman
	© Copyright 2026 Ronald B. Kopelman All Rights Reserved*/

@font-face {
	font-family: "textile";
	src: url("../../../fonts/textile/textile.woff2") format("woff2"),
	url("../../../fonts/textile/textile.woff") format("woff"),
	url("../../../fonts/textile/textile.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

* {margin: 0; padding: 0; box-sizing: border-box;}

.centered {
display: flex;
justify-content: center;
align-items: center;
}

html {font-family: Georgia, Times, serif; font-size: 16pt;}

body {height: 100vh; background-color: #938978;}

.wrapper {
flex-direction: column;
justify-content: space-between;
width: 95%; height: 95%;
border: 12px #011993 double;
border-radius: 20px;
background-color: bisque;
}

header, main, main p, .row, img, footer {
width: 95%;
margin: 8px;
padding: 8px;
border-radius: 10px;
}

header {
text-align: center;
font-family: textile, arial, helvetica, sans-serif;
color: beige;
font-size: 3.5vw;
background-color: #591B28;
}

header p:last-of-type {
font-family: arial, helvetica, sans-serif;
font-size: 2.5vw;
}
 
main {
display: flex;
flex-direction: column;
align-items: center;
height: 95%;
background-color: #938978;
overflow-x: hidden;
overflow-y: auto;
}

main p {
text-align: justify;
font-style: italic;
font-size: 2.5vw;
color: #591B28;
border: 12px #591B28 double;
background-color: bisque;
}

.row {
display: flex;
align-items: center;
}

.thumb {border: 6px bisque inset;}

footer {
text-align: center;
font-family: arial, helvetica, sans-serif;
color: beige;
font-size: 2.5vw;
font-style: italic;
background-color: #591B28;
}