*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	color-scheme: dark light;
	hanging-punctuation: first last;
	font-size: 100%;
}

body {
	min-height: 90svh;
	line-height: 1.6;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

img,
picture,
svg,
video {
	display: block;
	max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	text-wrap: balance;
}

#main{
	width: 100%;
	max-width: 1024px;
	margin: auto;
}

.margin_v{
	margin: 1rem 0;
}

.width_100{
	width: 100%;
}

.height_4rem{
	height: 4rem;
}

.header{
	text-align: center;
	border-bottom: 1px solid #808080;
	margin-bottom: 1rem;
}

.align_center{
	text-align: center;
}

.logo_text_home{
	font-size: 5rem;
}

.logo_text,.logo_text_home{
	font-family: 'Times New Roman', Times, serif;
}

.grid_2{
	display: grid;
	gap: .5rem;
	grid-template-columns: 1fr 1fr;
}

