@import url("/templates/global.css");
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text&display=swap');

body {
	background-color: white;
	background-position: center center;
	background-repeat: repeat-y;
}

.t-primary-bgcolor {
	background-color: #333;
}

a {
	color: #991B1F;
}

.header-wrapper {
	background-color: white;
}

.header {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.header__logo img {
	width: 400px;
}

.header__nav {
	margin: 30px 0;
	display: flex;
	gap: 30px;	
}

.header__nav a {
	display: inline-block;
	font-family: "Crimson Text", serif;
	font-size: 14px;
	color: rgb(27, 27, 27);
	transition: all .25s ease-in-out;
	font-weight: 400;
}

.header__nav a:hover {
	color: rgb(153, 3, 3);
	text-decoration: none;
}