﻿@import url(https://fonts.googleapis.com/css?family=Oxygen+Mono); /* Font for left sidebar.  Please Keep this font import at the very top of any CSS file */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,600&display=swap'); /* Font for myVOGH.  Please Keep this font import at the very top of any CSS file */
@import "responsive.css";
@charset "UTF-8";

body {
	background-color: #fff;
	margin-top: 0;
	margin-bottom: 0;
	/* background-image: url('../images/bkg2.png'); */
	background-repeat: repeat-x;
	font-size: 1rem;
}

.blur {
	-webkit-filter: blur(50px);
	filter: blur(50px);
}

/* Container holding the image and the text */
.banner {
	position: relative;
	text-align: center;
	-webkit-text-fill-color: white;
	-webkit-text-stroke-color: black;
	-webkit-text-stroke-width:1px;
}

/* Bottom left text */
.bottom-left {
	position: absolute;
	bottom: 5px;
	left: 15px;
}

/* Top left text */
.top-left {
	position: absolute;
	top: 5px;
	left: 15px;
}

/* Top right text */
.top-right {
	position: absolute;
	top: 5px;
	right: 15px;
}

/* Bottom right text */
.bottom-right {
	position: absolute;
	bottom: 5px;
	right: 15px;
}

/* Centered text */
.centered {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media print {
	.print-page-break {
		page-break-after: always;
		break-after: page;
		display: block;
		height: 0;
		width: 100%;
		clear: both;
	}

	.no-print, .no-print * {
		display: none !important;
	}

}



