
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

img a {
	border: none;
}

a {
	text-decoration: none;
	color: #107cc3;
}

a:hover, a:active {
	color: #929292;
}

p {
	line-height: 1.5;
	font-size: 19px;
}

li {
	line-height: 1.4;
}

p.big {
	font-size: 24px;
}

html {
	width: 100%;
	height: 100%;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	text-rendering: optimizeLegibility;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: none;
	-moz-text-size-adjust: none;
	text-size-adjust: none;
	width: 100%;
	background: url(../images/logo.svg) -5% -5% no-repeat;
	background-size: 45%;
	background-attachment: fixed;
}

nav {
	font-family: ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono", "Roboto Mono", "Oxygen Mono", "Ubuntu Monospace", "Source Code Pro", "Fira Mono", "Droid Sans Mono", "Courier New", monospace;
	font-weight: 700;
	width: 45%;
	height: 100%;
	position: fixed;
	top: 90%;
	text-align: center;
}

nav a {
	margin-bottom: 10%;
	margin-right: 45px;
	font-size: 22px;
	color: #a0bfd7;
}

nav a:hover {
	text-decoration: underline;
}

main {
	width: 50%;
	margin: 5% 5% 5% auto;
	padding-bottom: 5%;
}

main > .wrapper {
	
}

main #about h1 {
	font-weight: 700;
	font-size: 45px;
}

main #about h2 {
	font-weight: 500;
	font-size: 30px;
	margin-top: 5px;
}

main #about p {
	font-weight: 400;
	font-size: 19px;
	margin-top: 20px;
	margin-bottom: 35px;
}

main #description p {
	margin-top: 0;
	margin-bottom: 5px;
}

main #apps .app {
	margin-bottom: 10px;
}

main #apps summary {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-top: 25px;
	margin-bottom: 15px;
	cursor: pointer;
	list-style: none;
}

main #apps summary::-webkit-details-marker {
	display: none;
}

main #apps summary .wrapper {
	margin-right: auto;
}

main #apps summary::after {
	content: "";
	width: 9px;
	height: 9px;
	border-right: 2px solid #a0bfd7;
	border-bottom: 2px solid #a0bfd7;
	flex-shrink: 0;
	margin-left: 20px;
	margin-right: 4px;
	transform: rotate(45deg);
	transition: transform 0.25s ease;
}

main #apps details[open] summary::after {
	transform: rotate(225deg);
}

main #apps summary img {
	width: 50px;
	height: 50px;
	margin-right: 15px;
	margin-top: 4px;
}

/* Smooth expand/collapse where the browser supports it.
   Height animates via the grid-rows 0fr -> 1fr technique, which
   doesn't need interpolate-size, so it also works in Safari. */
main #apps details::details-content {
	display: grid;
	grid-template-rows: 0fr;
	opacity: 0;
	transition: grid-template-rows 0.3s ease, opacity 0.3s ease, content-visibility 0.3s allow-discrete;
}

main #apps details[open]::details-content {
	grid-template-rows: 1fr;
	opacity: 1;
}

main #apps .app-content {
	overflow: hidden;
	min-height: 0;
}

main #apps h1, main #publicSpeaking h1 {
	font-weight: 700;
	font-size: 35px;
	margin-bottom: 15px;
	color: #585858;
}

main #apps h2 {
	font-weight: 700;
	font-size: 25px;
	margin-bottom: 5px;
	color: #585858;
}

main #apps h3 {
	font-weight: 500;
	font-size: 18px;
	color: #585858;
}

main #apps ul {
	list-style-position: outside;
	margin-left: 20px;
	list-style-type: square;
}

main #apps ul li {
	margin-bottom: 10px;
}

main #apps .app-content > a {
	margin-top: 20px;
	margin-bottom: 30px;
	color: #107cc3;
	display: block;
}

main #apps a:hover {
	color: #0f8bde;
	text-decoration: underline;
}

main #apps #plume summary > img {
	box-shadow: 0 1px 7px #a3a5d5;
	border-radius: 10px;
}

main #description ul {
	list-style-position: outside;
	margin-left: 20px;
	list-style-type: square;
}

main #description ul li {
	margin-bottom: 10px;
}

@media screen and (max-width: 1023px) {
	body {
		background: url(../images/logo.svg) -5% -5% no-repeat;
		background-size: 400px;
		background-position: center -10%;
		background-attachment: inherit;
	}
	
	main {
		width: 80%;
		margin: 0 auto;
		margin-top: 200px;
		padding-bottom: 5%;
		text-align: center;
	}
	
	nav {
		position: inherit;
		width: 90%;
		margin: 0 auto;
	}
	
	nav a {
		display: inline-block;
		margin-bottom: 100px;
	}
	
	main #apps .app {
		width: 75%;
		margin: 0 auto;
	}
	
	main #apps .app ul, main #apps .app .wrapper {
		text-align: left;
	}
	
	main #apps a {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 414px) {
	main #about h1 {
		font-size: 10vw;
	}
	
	main #apps .app {
		width: 100%;
	}
	
	nav {
		width: 100%;
	}
	
	nav a {
		display: block;
		margin: 0;
		margin-bottom: 20px;
	}
	
	nav a:last-child {
		margin-bottom: 100px;
	}
}

/* Segmented control wrapper */
.segmented-control {
  display: inline-flex;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.segmented-control input[type="radio"] {
  display: none; /* Hide radio buttons */
}

/* Label styles to create the segmented button look */
.segmented-control label {
  padding: 10px 20px;
  background-color: #e0e0e0;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s, color 0.2s;
  font-size: 16px;
}

.segmented-control label:not(:last-child) {
  border-right: 1px solid #ccc;
}

/* Active segment styles */
#tab-apps:checked + label[for="tab-apps"],
#tab-speaking:checked + label[for="tab-speaking"] {
  background-color: white;
  color: black;
  font-weight: bold;
}

/* Tab content style */
.tab-content {
  border: 1px solid #ccc;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  max-width: 400px;
}

/* Initially hide both content sections */
#content-apps,
#content-speaking {
  display: none;
}

/* Show content when the corresponding tab is selected */
#tab-apps:checked ~ .content #content-apps {
  display: block;
}

#tab-speaking:checked ~ .content #content-speaking {
  display: block;
}