html
{
	width: 100vw;
}

*
{
	box-sizing: border-box;
}

:root
{
	--color1: #002e7b;
	--color2: #d0b64a;
	--color3: #f0f0f0;
}

@font-face
{
	font-family: 'Open Sans';
	src: url('../fonts/OpenSans-VariableFont_wght.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face
{
	font-family: 'Playfair';
	src: url('../fonts/Playfair.ttf') format('truetype');;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body
{
	margin: 0;
	padding: 0;
	width: 100vw;
	max-width: 100%;
	overflow-x: hidden;
	background-color:#FFF;
	font-family: 'Open Sans', 'Arial', 'Helvetica', sans-serif;
	color: black;
	font-size: 15px;
	line-height: 1.8em;
}

img
{
	display: block;
}

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

ul, ol
{
	padding: 0;
	list-style-type: none;
}

header, section
{
	display: flex;
	justify-content: center;
	width: 100vw;
}

h1
{
	font-size: 1.5em;
	line-height: 1.5em;
	text-align: center;
}

@media(min-width: 600px)
{
	h1
	{
		font-size: 1.3em;
		line-height: 2.2em;
	}

}

@media(min-width: 800px)
{
	h1
	{
		font-size: 1.6em;
	}
}

@media(min-width: 1000px)
{
	h1
	{
		font-size: 2em;
	}
}

h2
{
	font-size: 1em;
}

.container
{
	width: 100%;
	max-width: 1200px;
}

.backgroundBlue
{
	background-color: var(--color1);
}

.backgroundSilver
{
	background-color: var(--color3);
}


.Width100
{
	width: 100%;
}

.Mwidth100
{
	max-width: 100%;
}

.WidthMaxContent
{
	width: max-content;
}

.WidthAuto
{
	width: auto;
}

.FlexColAlCenter
{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.MaxWidth960
{
	max-width: 960px;
}

.Padding30
{
	padding: 0 30px;
}