
html {
	height: 100%;
	width: 100%;
	padding: 0px;
	font-family: "Barlow", sans-serif;
}

body {
	height: 100%;
	width: 100%;
	background-color: #FFF;
	color: #000;
	margin: 0px;
}

a {
	text-decoration: none;
	color: inherit;
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;

	display: flex;
	align-items: center;

	height: clamp(60px, 10vw, 70px);

	box-sizing: border-box;

	font-family: "Barlow", sans-serif;

	background: white;
	z-index: 1000;

	border-bottom: 1px solid lightgrey;
	justify-content: space-between;
}

#logo {
	box-sizing: border-box; 
	height: 100%;
	width: auto;
	object-fit: contain;
	padding: 1rem 0 1rem 1rem;
}

#menu {
	display: flex;
	flex-wrap: nowrap;
	gap: 0 1vw;
	height: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
	align-items: center;
}

#menu li {
	padding: 0 1vw;
	/*font-size: clamp(1.2em, 3.5vw, 33px);*/
	font-size: 1.2em;
	display:flex;
	align-items:center;
	height: 100%;
	cursor: pointer;
	transition: opacity 0.25s ease-in-out;
}

#menu li:hover {
	opacity: 0.7;
}

#socials {
	display: flex;
	/*gap: 0.5rem;*/
	gap: 0.5vw;

	height: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
	margin-right: 1rem;
}

#socials li {
	height: clamp(1.5em, 35%, 2.5em);
	/*height: 50%;*/
	aspect-ratio: 1 / 1;
	cursor: pointer;
	white-space: nowrap;
	margin: auto 0;
	transition: opacity 0.2s ease-in-out;
}

#socials li:hover {
	opacity: 0.70;
}

#content{
	width: 65%;
	padding: 0px;
	padding-top: clamp(4.5em, 12vw, 6em);
	text-align: justify;
	margin: 0 auto;
}

#content a {
	color:darkred;
}

.double-space {
	margin-top:3em;
}