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

body {
	background-color: #c9d6bb;
	font-size: 20px;
}

header {
	display: block;
	background-color: #46777c;
	padding: 15px 30px;
	border: 1px solid #46777c;
	border-radius: 20px;
	text-align: center;
	margin-top: 30px;
	color: white;
} 

a{
	text-decoration: none;
	color: #007c85;
}

a:hover{
	color: #a3594f;
	text-decoration: underline;
}

.sidebar {
	display: float;
	position: fixed;
	top: 10%;
	left: 0;
	width: 20%;
	padding-right: 20px;
	padding-left: 20px;
	border-right: 5px solid #007c85;
	font-size: 1.2em;
	font-weight: bold;
	text-align: right;
	overflow: hidden;
	color: #007c85;
}

.sidebar2 {
	display: float;
	position: fixed;
	bottom: 0;
	right: 0;
	width: 15%;
}
	
.sidebar ul{
	list-style-type: none;
	font-family: "Futura", "Arial", sans-serif;
}

.sidebar li{
	margin-bottom: 20px;
}

h3 {
	color: #00200d;
	margin-bottom: 10px;
}

p{
	margin-bottom: 10px;
	margin-top: 10px;
	text-align: justify;
}

.page {
	margin-left: 23%;
	margin-right: 15%;
}

.main {
	background-color: white;
	margin-top: 30px;
	border: 2px dashed #46777c;
	border-radius: 20px;
	padding: 10px 20px;
}

.main-s{
	background-color: white;
	margin-top: 30px;
	border: 5px solid #46777c;
	border-radius: 20px;
	padding: 10px 20px;
	height: 200px;
	overflow: scroll;
	scrollbar-color: #46777c white;
}

img {
	display: block;
	width: 90%;
	height: auto;
	object-fit: contain;
	margin: 0 auto;
}

.stamp {
    image-rendering: auto;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    image-rendering: -webkit-optimize-contrast;
}
.stamp img {
	display: inline;
	width: auto;
}

.gallery {
	margin-top: 30px;
	margin-left: 23%;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.photo {
	width: 47%;
	align-content: center;
	display: block;
	background-color: white;
	border: 2px dashed #46777c;
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
	margin-right: 20px;
	margin-bottom: 20px;
}

.gcard {
	margin-left: 23%;
	margin-right: 2.8%;
	background-color: white;
	margin-top: 30px;
	border: 2px dashed #46777c;
	border-radius: 20px;
	padding: 10px 20px;
}

.sub {
	text-align: center;
	font-style: italic;
}

footer {
	margin-top: 50px;
}

footer p {
	text-align: center;
}