@charset "UTF-8";
/* CSS Document */

/* Schrifteinbindung */
@font-face {
    font-family: "SourceSans3";
    src:
      url("fonts/SourceSans3-Regular.otf.woff2");
    font-weight: 400;
	font-style: normal;
  }

@font-face {
    font-family: "SourceSans3";
    src:
      url("fonts/SourceSans3-Bold.otf.woff2");
    font-weight: 700;
	font-style: normal;
  }

@font-face {
    font-family: "SourceSans3";
    src:
      url("fonts/SourceSans3-BoldIt.otf.woff2");
    font-weight: 700;
	font-style: italic;
  }

@font-face {
    font-family: "SourceSans3";
    src:
      url("fonts/SourceSans3-Semibold.otf.woff2");
    font-weight: 600;
	font-style: normal;
  }

* {padding:0; margin: 0; font-size: 33.75px;}

/* CSS Anpassung Typo */
body {
	font-family: "SourceSans3";
	display:flex;
	align-items: stretch;
	justify-content: space-between;
	flex-direction: column;
	min-height: 100dvh;
	line-height: 1.175;
}

h1 {
	font-weight:700;
	font-style: italic;
	font-size: 1.22rem;
}

p {
	margin-bottom: 43.5px;
	font-weight: 600;
}

em {
	color: #E40613;
	font-weight: 700;
	font-style: italic;
}

strong {
	color: #E40613;
	font-weight: 700;
}

.button {
	color: #ffffff;
	font-weight: 400;
	font-size: 0.67rem;
	background-color: #000000;
	padding: 11.25px 15.75px;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.69px
	
}

.button:hover {
	background-color: #E40613;
}

/* CSS Anpassung Container */

#logo {
	align-self: flex-start;
	padding: 33.75px;
}

#main {
	align-self: center;
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 18.75px;
	height: 100%;
	padding: 0 250px;
}

#links {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 65.25px;
	
}

#footer {
	background-color: #000000;
	color: #ffffff;
	letter-spacing: 0.69px;
	margin-top: 165px;
	padding: 12px 75px;
	display: flex;
	justify-content: space-between;
}

#links_footer{
	display: flex;
	gap: 37.5px;
	text-transform: uppercase;
	align-items: center;
}

#links_footer a {
	color: #ffffff;
	text-decoration: none;
	font-size: 0.53rem;
}

#links_footer a:hover {
	color: #E40613;
}

#img_logo {
	width: 435px;
	height: auto;
}

#seal {
	width: 214.5px;
	margin-top: -165px;
}


/* Mobil */

@media (max-width: 1000px) {
	* {
		font-size: 25.3125px;
	}
	
	#img_logo {
	width: 326.25px;
}
	
	#main {
		padding: 0 33.75px;		
	}
	
	#footer {
		padding: 9px 56.25px;
	}
	
	#links_footer{
		gap: 28.125px;
	}
	
	#seal {
		width: 160.875px;
		margin-top: -123.75px;
	}
}

@media (max-width: 650px) {
	
	
	#logo {
		align-self: center;
	}
	
	#main {
		margin-bottom: 33.75px;
	}
	
	#footer {
		flex-direction:column-reverse;
		align-items: center;
		padding-bottom: 24px;
	}

	
	#seal {
		align-self: flex-end;
		margin-bottom: 33.75px;
	}
	
	#links_footer {
		align-items: flex-start;
	}

}