/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: var(--cherry);
  color: var(--beige);
  font-family: "Courier Prime", monospace;
  font-weight: 400;
  font-style: normal; 
}
* {
  box-sizing: border-box;
	word-break: break-word;
	line-height: 1.5rem;
	font-size: 15px;
}

:root {
	--cherry: #610010;
	--beige: #f8e7d1;
	--green: #0f5132;
	--lavendar: #A27BB8;
	--white: #f2f3f4;
	--black: #050301;
	--brown: #2b1b17;
	--grey: #ececec;
}


section {
	font-family: "Courier Prime", monospace;
	display: flex;
	flex-direction: column;
	max-width: 600px;
	font-weight: 900;
	gap: 100px;
	color: var(--brown)
}

.dashboard, .tabcontent {
	width: 100%;
	height: fit-content;
	background-color: var(--grey);
	border: 2px solid black;
}

.window-bar, .item-bar {
	background-color: var(--cherry);
	border: 2px solid black;
	margin: 4px;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	font-size: 14px;
	height: 35px;
	padding: 2px 4px;
	color: var(--white);
}

.window-bar button, .item-bar span {
	text-align: center;
	width: 30px;
	height: 25px;
	background-color: var(--white);
	border: 2px solid black;
	cursor: pointer;
}

.profile {
	margin: 6px;
}

.title {
/* 	background-image: radial-gradient(circle, rgba(255,102,193,1) 16%, rgba(246,168,255,1) 44%, rgba(150,138,255,1) 77%); */
	color: var(--brown);
/* 	-webkit-background-clip: text;
	-moz-background-clip: text;
	-webkit-text-fill-color: transparent; 
	-moz-text-fill-color: transparent; */
	text-shadow: -4px 2px 4px rgba(0, 0, 0, 0.3);
	font-family: "Courier Prime", monospace;
	line-height: 3rem;
	font-weight: 900;
	font-size: 30px;
	color: var(--cherry)
}

