/*
@media screen and (min-width: 2560px) and (min-height: 1440px) {
	html {
		transform: scale(calc(2560/1920));
		transform-origin: 0 0;
		max-width: 1909px;
	}
}

@media screen and (min-width: 3840px) and (min-height: 2160px) {
	html {
		transform: scale(2);
		transform-origin: 0 0;
		max-width: 1912px;
	}
}
*/

body {
	font-family: Poppins, 'Times New Roman', Times, serif;
	font-size: 16px;
	background-color: #fffaf6;
	padding-bottom: 16px;
	min-width:960px;
}

p {
	margin: 0px;
}



.page-content {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 50px;
	margin: 0 auto;
	padding-left: 2%;
	padding-right: 2%;
	min-width:fit-content;
	/*
	min-width: fit-content;
	max-width: 960px;
	*/
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 1px;
	border-style: inset;
	border-color: green;
	background-color: rgb(241, 229, 161);
	width: 100%;
}

header .links a {
	color: rgb(0, 0, 12);
	text-decoration: none;
}

.logo {
	margin-left: 50px;
	display: flex;
	flex-direction: column;
	align-items: center
}

.links {
	min-width: 0;
	padding-left: 100px;
	padding-right: 25px;
	display: flex;
	gap: 32px;
}

footer {
	display: flex;
	align-items: center;
	justify-content: space-around;
	margin-top: 50px;
	background-color: #e7dcd3;
	width: 100%;
	padding: 20px 0px 20px 0px;
}

footer .footer-address {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	width: 400px;
	padding-left:3vmax;
	padding-right:3vmax;
}

footer .footer-address-top {
	font-size: 2vmax;
	margin-bottom:10px;
}

footer .footer-address-middle {
	display: flex;
	justify-content: flex-start;
	gap: 20px;
	margin-bottom:10px;
	font-size: 1vmax;
}

footer .footer-address-bottom {
	font-size: 0.8vmax;
}