:root {
	--ppDark: #263D42;
	--ppPrimary: #FF7C00;
	--ppSecondary: #6dd3b1;
	--ppTertiary: #8E6C88;
	--ppLight: #E7EAEA;
	--inner-margin: 3%;
	--outer-margin: 5%;
	--button-width: 100px;
	--max-width: 1000px;
}

@font-face {
	font-family: "pixChicago";
	src: url(/assets/fonts/pixChicago.ttf) format("truetype");
}
@font-face {
	font-family: "KiwiSoda";
	src: url(/assets/fonts/KiwiSoda.ttf) format("truetype");
}
@font-face {
	font-family: "IBM";
	src: url(/assets/fonts/IBMPlexMono-Regular.ttf) format("truetype");
}

html, body {
	margin: 0;
	padding: 0;
}

* {
	box-sizing: border-box;	
}

p {
	font-family: 'IBM', monospace;
	color: var(--ppDark);
	font-size: 12px;
}

h2 {
	font-family: 'KiwiSoda';
	color: var(--ppDark);
	font-size: 30px;
}

h3 {
	font-family: 'KiwiSoda';
	color: var(--ppSecondary);
	font-size: 24px;
}

a {
	text-decoration: none;
	color: inherit;
}



.background {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	height: 100vh;
	width: 100vw;
	background-color: var(--ppPrimary);
	padding: 3%;
}



.bezel-container {
	grid-area: monitor;
	height: 100%;
	width: 100%;
	max-width: var(--max-width);
	background-image: url("/assets/images/computer-plastic.png");
	background-size: cover;
	border-radius: 12px;
	box-shadow: 8px 8px 16px hsl(90deg 0% 0% / 0.31); 
	padding: 5% 5% 0 5%;
	display: flex;
	flex-direction: column;
} 

.screen-container {
	border-top: var(--ppDark) 8px solid;
	border-bottom: var(--ppLight) 8px solid;
	border-left: var(--ppDark) 6px solid;
	border-right: var(--ppLight) 6px solid;
	border-radius: 4px;
	background: linear-gradient(135deg, var(--ppPrimary), var(--ppSecondary), var(--ppTertiary));
	height: 100%;
	width: 100%;
	align-items: stretch;
}

.bezel-button-container {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	padding: 3% 2%;
}

.power-button {
	/* flex: 0 1 50px; */
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 3% 3.5%;
	height: 80px;
	width: 80px;
	background-image: url("/assets/images/computer-plastic.png");
	background-size: cover;
	border: var(--ppDark) 2px solid;
	border-radius: 50%;
}

.power-button-logo {
	width: 24px;
}



.taskbar {
	width: 100%;
	background-color: var(--ppLight);
	border-bottom: var(--ppDark) 2px solid;
}

.tab {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

.tablinks {
	background: none;
	border: none;
	color: var(--ppDark);
	font-family: 'pixChicago', monospace;
	font-size: 10px;
	cursor: pointer;
}

.tablinks:hover {
	background-color: var(--ppSecondary);
	color: var(--ppLight);
}

.tablinks.logo:hover {
	background: none;
}

.header-logo {
	background: none;
	border: none;
	height: 20px;
	padding: 4px 4px 0 8px;
}

.desktop-icon-container {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	padding: 3% 2%;
}

.desktop-icon {
	display: flex;
	flex-direction: column;
	justify-content: center;
	
}

.desktop-logo {
	width: 80px;
	height: auto;
	
}

.desktop-icon p {
	color: var(--ppDark);
	background-color: var(--ppLight);
	font-family: 'pixChicago', monospace;
	font-size: 10px;
	width: 80px;
	text-align: center;
}

.desktop-elements {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-wrap: wrap;
	padding: 20px;
	
}

.window-container {
	display: flex;
	flex-direction: column;
	/* width: 80%; */
	margin-left: 5%;
	margin-right: 7%;
	background-color: var(--ppLight);
	box-shadow: 10px 10px var(--ppTertiary);
	border: var(--ppDark) 4px solid;
	border-radius: 8px;
}



.window-header {
	color: var(--ppLight);
	border-bottom: var(--ppDark) 2px solid;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.window-header p {
	margin: 0;
	font-family: 'pixChicago', monospace;
	font-size: 12px;
	text-align: center;
}

.window-content {
	overflow-y: scroll;
	padding: var(--inner-margin);
	
	max-height: 400px;
}

.hero-ctas {
	text-decoration: underline;
	color: var(--ppTertiary);
}

.window-content a {
	text-decoration: underline;
	color: var(--ppTertiary);
}

.window-content-logo {
	width: 80px;
	height: auto;
	align-self: center;
}

footer {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	color: var(--ppDark);
	font-family: 'IBM';
	font-size: 12px;
	padding-top: 16px;
}

.footer-nav {
	display: flex;
	justify-content: flex-start;
	gap: 30px;
	padding-top: 3px;
}

