body {
	display: flex;
	flex-direction: column;
	align-items: center;
}
#header {
	top: 0px;
	width: 100%;
	height: 150px;
	background-color: #055e97;
	display: flex;
	box-sizing: border-box;
	padding: 25px;
	justify-content: space-between;
	flex-direction: row;
	align-items: center;
	gap: 25px;
	box-shadow: 0px 0px 50px -10px rgba(0,0,0,0.5);
}

#header > * {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	filter: drop-shadow( 0px 0px 30px rgba(0,0,0,0.3));
}

#taubeLogo {
	width: 100px;
	height: 100px;
	background-image: url("/img/taube-logo-hd-weiss.png");
}

#uciLogo {
	width: 500px;
	height: 100px;
	background-image: url("/img/uci-long-banner.png");
}

#content {
	padding: 30px;
	box-sizing: border-box;
	width: 100%;
	max-width: 900px;
	box-shadow: 0px 0px 50px -10px rgba(0,0,0,0.2);
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 20px;
}

.faqItem {
	border: solid 1px rgba(0,0,0,0.5);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
}

.faqCaption {
	padding: 20px;
	font-size: 1.2em;
	font-weight: bold;
	cursor: pointer;
	position: relative;
}

.faqCaption::after {
	content: '\02771';
	position: absolute;
	right: 20px;
	transition: rotate ease-in-out 0.2s;
}

.faqResponse {
	padding: 20px;
	display: none;
	border-top: solid 1px rgba(0,0,0,0.5);
}

.faqInput {
	display: none;
}

.faqInput:checked ~ .faqResponse {
	display: block;
}

.faqInput:checked ~ .faqCaption::after {
	rotate: 90deg;
}

#links {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
}