/**
 * Undercurrents
 *
 * Author: Dave Eddy <ysap@daveeddy.com>
 * Date: May 04, 2025
 * License: MIT
 */

/* terminal theme (from theme bash script) */
:root {
	--color1: #5fffff;
	--color2: #ff87af;
	--color3: #87ff87;
	--color4: #666;
	--color5: #ffd7af;
}

/* reset */
* {
	margin: 0;
	padding: 0;
}

/* helper */
.center {
	text-align: center;
}

.title {
	color: var(--color3);
}

.highlight {
	color: var(--color3);
}

.hidden {
	display: none;
}

.float-right {
	float: right;
}

.shadow {
	border: 1px solid #87ff8755; /* color3 */
	box-shadow: 0 0 80px #87ff8774;
}

@media (max-width: 650px) {
	.hide-mobile{
		display: none;
	}
}

/* layout and design */
body {
	background-color: #000;
	color: var(--color5);
	line-height: 18px;
        font-size: 13px;
	-webkit-text-size-adjust: 100%;

}

ul > li {
        font-size: 13px !important;
}

body, code {
	font-family: "Fira Mono", monospace;
	font-weight: 400;
}

b, strong, h1, h2, h3, h4, h5, h6 {
	font-weight: 900;
}

#container {
	position: relative;
	margin-right: auto;
	margin-left: auto;
	margin-top: 10px;
	max-width: 565px;
	padding: 0 6px;
	text-align: center;
}

a, a:visited {
	color: var(--color1);
	text-decoration: none;
}

.self-portrait {
	border-radius: 50%;
}

h1 {
	margin-bottom: 21px;
	margin-top: 18px;
	line-height: 30px;
}

.footer {
        text-align: center;
        font-size: 12px;
}

ul.controls, ul.more, pre.terminal {
	text-align: left;
	max-width: 580px;
	margin-right: auto;
	margin-left: auto;
}

pre.terminal {
	padding: 30px;
}

div.notes {
	width: 380px;
	margin-right: auto;
	margin-left: auto;
	text-align: left;
	font-size: 12px;
}

.screenshot {
	width: 100%;
}

ul {
	list-style-position: inside;
}

#not-yet-released {
	display: none;
}

.yt-container {
	display: flex;
	justify-content: center;
}

iframe {
	aspect-ratio: 16 / 9;
	width: 100% !important;
}
