body {
    font-family: Arial, sans-serif;
    margin: 0;
	background-image: url("images/background.png");
	background-position-x: center;
	background-position-y: 500px;
	background-repeat: repeat-y;
	background-color: #11283d;
}

.x {
	position: relative;
	z-index: 1;
}

.x::before {
	background-image: url("images/background-top.png");
	background-position-x: center;
	background-repeat: no-repeat;
	content: "";
	position: absolute;
	top: 0;
	height: 500px;
	z-index: -1;
	width: 100%;
}

div {
	width: auto;
}

.title {
	font-family: Outfit;
	font-size: 5em;
	font-weight: 900;
	text-align: right;
	padding: 25px 25px 0px 25px;
	background-color: rgba(0.0, 0.0, 0.0, 0.66);
	mix-blend-mode: multiply;
	color: white;
	display: flex;
	align-items: last baseline;
	justify-content: space-between;
}

.logo {
	mix-blend-mode: normal;
	width: 200px;
}

.parent {
	min-width: 750px;
	max-width: 1000px;
	width: 50%;
	margin: auto;
}

.blogContainer {
	min-width: 750px;
	max-width: 1000px;
	width: 50%;
	margin: auto;
}

.blogContainer > div {
	margin-bottom: 2px;
	backdrop-filter: blur(5px);
	background: rgba(0.0, 0.0, 0.0, 0.5);
}

.blogContainer > * {
	padding: 1em;
	font-weight: 600;
	text-align: justify;
}

.blogContainer > div > h3 {
	margin-top: 0px;
	color: white;
	font-weight: 600;
	font-family: Outfit;
}

.blogContainer > div > div {
	display: inline-flex;
}

.blogContainer > div > div > div {
	padding-left: 1em;
	color: white;
	font-weight: 400;
	font-family: Outfit;
}

.blocContainerOverride {
	display: block !important;
}

.blocContainerOverride > div {
	padding-bottom: 1em;
}

.blocContainerOverride > iframe {
	width: 100%;
}

.buttonBar {
	display: flex;
}

.buttonItem {
	font-family: Outfit;
	font-size: 1em;
	font-weight: 600;
	margin-top: 2px;
	margin-bottom: 2px;
	width: 100%;
	border: none;
	color: white;
	background: rgba(0.0, 0.0, 0.0, 0.66);
	cursor: pointer;
}

.buttonItem:not(:first-child) {
	margin-left: 2px;
}

.buttonItem:not(:last-child) {
	margin-right: 2px;
}

.footerItem > div {
	min-width: 750px;
	max-width: 1000px;
	width: 50%;
	margin: auto;
	padding-block: 2px;
	font-family: Outfit;
	font-size: 0.75em;
	font-weight: 400;
	text-align: center;
	color: white;
	background: rgba(0.0, 0.0, 0.0, 0.66);
}