:root {
	--infinite: #0095c5ff;
	--minor-curve: .15em;
}

@font-face {
	font-family: Mullish;
	src: url(Mulish-VariableFont_wght.ttf);
}

@font-face {
	font-family: Nunito;
	src: url(NunitoRegular-vmABZ.ttf) format(truetype);
}
@font-face {
	font-family: Nunito;
	src: url(NunitoLight-K7dKW.ttf) format(truetype);
	font-weight: 300;
}

@font-face {
	font-family: Quicking;
	src: url(QuickingRegular-gw5KY.otf);
}


html {
	background: #eee;
}


body {
	margin: 0 auto;
	padding: 0;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	
	font-family: 'Mullish', sans-serif;
	font-size: 16pt;
}


abbr {
	text-decoration: none;
}


.centered {
	text-align: center;
}


section {
	width: 100%;
	max-width: 900px;
}

body > aside {
	position: fixed;
	width: 100%;
	text-align: right;
	padding: .5em;
	backdrop-filter: blur(10px);
	background: #f5f5f599;
}


body > aside a {
	display: inline-block;
	margin: .25em;
	font-family: 'Quicking';
	color: black;
	text-decoration: none;
}
body > aside a:hover {
	text-decoration: underline;
}


#log-in {
	background: var(--infinite);
	color: white;
	text-decoration: none;
	padding: .25em .75em;
	border-radius: var(--minor-curve);
	font-family: 'Nunito';
	font-weight: 300;
}


#text > header {
	text-align: left;
	padding: 1px;
}


#text > header h1,
#privacy h1 {
	font-family: 'Nunito', sans-serif;
	font-weight: 300;
	margin: 4em 0;
	position: relative;
	font-size: 2em;
	filter: blur(.01em);
}
#text > header h1::after,
#privacy h1::after {
	content: "Ultrasound made effortless.";
	color: black;
	opacity: 20%;
	z-index: -1;
	position: absolute;
	left: 8px;
	top: 21%;
	transform:
		skewX(-20deg)
		scaleY(.5);
	filter: blur(4px);
}


#intro, #privacy {
	margin-bottom: 6em;
	font-family: 'Nunito';
}
#privacy {
	margin-bottom: 3em;
}


#intro h2 {
	font-family: Quicking;
	margin-bottom: 0;
	font-weight: normal;
}


details {
	background: #f5f5f5;
	border-radius: var(--minor-curve);
	box-shadow: 0 0 40px 15px rgba(0, 0, 0, .05);
	margin-bottom: 3em;
}
details:last-of-type {
	margin-bottom: 0;
}


summary {
	font-family: Quicking;
	background: #0095c5ff;
	color: white;
	padding: .5em;
	border-radius: var(--minor-curve);
	font-size: 1.5em;
	list-style: none;
	cursor: pointer;
}
summary::after {
	content: "+";
	float: right;
	font-weight: bold;
}
details[open] summary {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	transition:
		border-bottom-left-radius .4s ease,
		border-bottom-right-radius .4s ease;
}
details[open] summary::after {
	content: "-";
}

details > div {
	margin: .5em 1.5em;
	padding-bottom: 1px;
	overflow: hidden;
	transition: none;
}


#microsoft {
	margin: 40px 0;
	text-align: center;
}


#paypal-widget {
	display: flex;
	justify-content: center;
	margin-bottom: 1em;
}
#paypal-widget > * {
	width: 75%;
}


#privacy h1 {
	margin: 3em 0 2em;
}
#privacy h1::after {
	content: "Privacy Policy";
}

#privacy hr {
	margin: 3em auto;
	width: 10%;
}

#privacy blockquote {
	background: rgba(0, 0, 0, .1);
	padding: 1em;
}

#privacy blockquote > *:first-child {
	margin-top: 0;
}

#privacy blockquote footer {
	font-weight: bold;
	font-style: italic;
}

#privacy blockquote footer::before {
	content: "— ";
}


body > footer {
	padding: 1em 0 .5em;
	width: 100%;
	
	background: #111;
	color: #666;
	text-align: center;
}
