@font-face {
	font-family: "PlayfairDisplay";
	src: url("../assets/fonts/PlayfairDisplay.ttf");
}

@font-face {
	font-family: "LibreCaslonText-Italic";
	src: url("../assets/fonts/LibreCaslonText-Italic.ttf");
}

colors {
	color: #4a5a35;
	color: #e7e4bb;
	color: #000000;
}

html,
body {
	/* background-color: #e7e4bb; */
	color: #4a5a35;
	padding: 0;
	margin: 0;
}

#background-video {
	height: 100vh;
	width: 100vw;
	object-fit: cover;
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -2;
}

#overlay {
	height: 100vh;
	width: 100vw;
	background-color: rgba(255, 255, 255, 0.1);
	object-fit: cover;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
}

body,
input,
select,
textarea {
	font-family: "PlayfairDisplay", "Times New Roman", serif;
	font-size: 16pt;
	font-weight: 400;
	line-height: 1.75em;
	text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "LibreCaslonText-Italic", "PlayfairDisplay", "Times New Roman", serif;
	text-transform: capitalize;
}

p {
	color: #000000;
	font-size: 14pt;
}

#nav {
	border-top: 2px solid #4a5a35;
}

#nav a {
	color: #4a5a35;
	text-decoration: none;
	font-size: 16px;
}

img {
	max-width: 100%;
}

.logo img {
	text-align: right;
	display: block;
	margin: 1em auto;
	width: 100%;
	max-width: 200px;
}

.avatar img {
	text-align: right;
	display: block;
	margin: 1em auto;
	width: 100%;
	max-width: 200px;
}

.collage img {
	border-radius: 1rem;
	/* box-shadow: 0px 0px 10px 2px #ffe77a4f; */
}

.rounded-box {
	border-radius: 1rem;
	padding: 10px;
	background-color: #e7e4bbbd;
	/* box-shadow: 0px 0px 10px 2px #ffe77a4f; */
}

.rounded-box.colored-box {
	border-radius: 1rem;
	padding: 10px;
	background-color: #4a5a35bd;
	color: #e7e4bb;
}

.rounded-box.colored-box * {
	color: #e7e4bb;
}

.pill {
	background-color: #4a5a35;
	border-radius: 30px;
	width: 100px;
	display: block;
	height: 29px;
	text-align: center;
	padding: 4px;
	margin: auto;
}

.pill img {
	max-width: 100%;
}

#footer .pill {
	text-align: right;
}

.newsletter-container {
	display: flex;
	justify-content: center;
}

.platform-list {
	text-align: left;
}

.platform-item {
	margin-bottom: 16px;
}

.platform-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
	font-size: 18px;
	transition: opacity 0.2s ease;
}

.platform-link:hover {
	opacity: 0.7;
}

.platform-icon {
	width: 24px;
	height: 24px;
	margin-right: 12px;
	flex-shrink: 0;
	display: block;
}

.platform-name {
	line-height: 1;
}