* {
	box-sizing: border-box;
}

@font-face {
  font-family: MSfont;
  src: url(fonts/refsans.ttf);
}

@font-face {
  font-family: PXsans;
  src: url(fonts/pxsans.woff2);
}

@font-face {
  font-family: Tahoma;
  src: url(fonts/tahoma.ttf);
}

@font-face {
  font-family: Tahoma-bold;
  src: url(fonts/tahomabd.ttf);
}

@font-face {
  font-family: lucida;
  src: url(fonts/lucon.ttf);
}

body {
	background: teal;
}

.container {
    position: absolute;
    top:0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
	flex-direction: column;
    justify-content: flex-end;
}

button {
	background: silver;
	border-left: 2px solid #ededed;
    border-top: 2px solid #ededed;
    border-right: 2px solid #404040;
    border-bottom: 2px solid #404040;
}

.draggable {
	z-index: 0;
}

p, h2, h3 {
	font-family: Tahoma-bold;
}

.start-bar {
    width: 100%;
    height: 30px;
    background: silver;
    z-index: 1;
	border-left: 2px solid #ededed;
    border-top: 2px solid #ededed;
    border-right: 2px solid #404040;
    border-bottom: 2px solid #404040;
    display: flex;
    justify-content: space-between;
}

.start-button {
	font-weight: bold;
	font-size: 14px;
	display: flex;
    align-items: center;
}

.system-tray {
    height: 98%;
    background: silver;
    border-right: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    border-left: 1px solid #404040;
    border-top: 1px solid #404040;
    Width: 300px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 1em;
}

.system-tray p,
.info-bar p,
.menu-bar p,
.word-menu-bar p {
    font-family: PXsans;
    font-size: .7em;
}

.start-menu {
	z-index: 1;
	background: silver;
	height:600px;
	width: 350px;
	border-left: 2px solid #ededed;
    border-top: 2px solid #ededed;
    border-right: 2px solid #404040;
    border-bottom: 2px solid #404040;
    display: flex;
}

.side-bit {
    height: 100%;
    width: 40px;
    background: navy;
    border-top: 1px solid silver;
    border-left: 1px solid silver;
}

.menu {
    padding-top: 1px;
    width: 100%;
}

.start-menu p {
    font-family: PXsans;
    font-size: 12px;
}

.line {
    margin: 0 auto;
    width: 98%;
    height: 1px;
    border-right: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    border-left: 1px solid #404040;
    border-top: 1px solid #404040;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: .5em 0 .5em .8em;
    width: 100%;
}

.menu-item img {
    padding-right: 1.5em;
}

.menu-item:hover {
    background: navy;
    color: white;
}

.hide {
	display: none;
}

.show {
	display: block;
}

/*		DESKTOP      */

.desktop {
	height: 90vh;
	width: 100vw;
}

.icon {
    width: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.8em 1em;
    cursor: pointer;
}

.icon p {
    color: white;
    font-size: .6em; 
    text-align: center;
    line-height: 1.5em;
    padding: .5em 0 0 0;
    text-shadow: rgba(26, 26, 26, 0.89) 2px 1px;
    font-family: PXsans;
}

a.icon {
	position: absolute;
	top:30vh;
	left: 20vw;
	margin: 0;
}

a .icon {
	margin: 0;
}

/*GENERAL WINDOW STYLING*/

.window {
	position: absolute;
	background: silver;
	border-top: 2px solid #efefef;
    border-left: 2px solid #efefef;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
	display: none;
}


.title-bar {
	width: 100%;
	height: 25px;
	background: navy;
	margin: 0 auto;
	border-top: 1px solid silver;
    border-left: 1px solid silver;
    border-right: 2px solid silver;
    border-bottom: 2px solid silver;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.title-bar:hover {
	cursor:default;
}

p.title {
	color: white;
	font-size: 14px;
	padding-left: 4px;
}

.exit {
	background: silver;
	border-top: 2px solid #efefef;
    border-left: 2px solid #efefef;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
	width: 18px;
	height: 18px;
	margin-right: 1.5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.exit p {
	color: black;
	margin-bottom: 2px;
}

/*DIALOGUE BOX*/


.dialogue-box {
    top: 30vh;
	left: 30vw;
	width: 600px;
	z-index: 100;
}

.dialogue-and-buttons {
	padding-bottom: 1.4em;
	height: 100%;
}

.dialogue-wrapper {
	display: flex;
	margin: 1em 1em;
	align-items: center;
}

p.dialogue {
	font-family: Tahoma;
	font-size: 14px;
	margin-left: 1.5em;
    line-height: 115%;
	padding-bottom: 1em;
}

.button-wrapper {
	display: flex;
	justify-content: center;
}

.button-wrapper button {
	font-family: Tahoma;
	font-size: 14px;
	padding: .4em .6em;
	margin: 0 3px;
}

/*NOTEPAD*/

.notepad {
    width: 550px;
    height: 650px;
    top: 7.5vh;
	left: 30vw;
}

.text-editor { 
    width: 98%;
    height: 614px;
    background: white;
    margin: 2px auto 0 auto;
    border-right: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    border-left: 1px solid #404040;
    border-top: 1px solid #404040;
    padding-top: 1px;
	overflow-y: scroll;
}

.text-editor p, .text-editor pre {
	font-family: lucida;
    margin: .5em .5em 1em .5em;
    line-height: 140%;
	
}

pre {
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

/* FOLDER WINDOW*/

.folder {
    width: 720px;
    height: 500px;
    top: 20vh;
	left: 30vw;
}

#puck {
	top: 22.3vh;
	left: 31vw;
}

#randomCrap {
	top: 22.3vh;
	left: 31vw;
}

#games {
	top: 15vh;
	left: 25vw;
}

.menu-bar {
    height: 28px;
    width: 95%;
    margin: 2px auto 0 auto;
    display: flex;
    align-items: center;
}

.menu-bar p,
.word-menu-bar p {
   padding-right: 1.5em;
}

.folder-space { 
    width: 98%;
    height: 404px;
    background: white;
    margin: 2px auto 0 auto;
    border-right: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    border-left: 1px solid #404040;
    border-top: 1px solid #404040;
    padding-top: 1.3em;
	overflow-y: scroll;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

.folder-space .icon {
    margin: 0 .8em 1.2em .8em;
}

.folder-icon p {
    cursor: pointer;
	color: black;
    text-shadow: none;
}


.folder-space .icon {
    cursor: default;
}

.info-bar {
    height: 28px;
    background: silver;
    border-right: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    border-left: 1px solid #404040;
    border-top: 1px solid #404040;
    margin: 2px auto 0 auto;
    width: 98%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 1em;
}

/*WORD DOCS -- USES A LOT OF THE FOLDER STYLING*/

.word {
    height: 97%;
    width: 100%;
    top:0;
    left:0;
}

.word-menu-bar {
    height: 28px;
    width: 98%;
    margin: 2px auto 0 auto;
    display: flex;
    align-items: center;
}

.word-menu-bar img {
    width: 26px;
    height: 26px;
    margin-right: 1.5em;
}

.word .line {
    width: 99%;
}

.format-bar {
    height: 30px;
    background: silver;
    border-left: 4px double #ededed;
    width: 99%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.format-bar img {
    width: 26px;
    height: 26px;
    margin: 0 8px;
}

.separator {
    width: 1px;
    height: 100%;
    border-right: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    border-left: 1px solid #404040;
    border-top: 1px solid #404040;
    margin: 0 8px;
}

.text-space { 
    width: 99%;
    height: 83%;
    background: white;
    margin: 2px auto 0 auto;
    border-right: 2px solid #ededed;
    border-bottom: 2px solid #ededed;
    border-left: 2px solid #404040;
    border-top: 3px solid #404040;
	overflow-y: scroll;
}

.ruler {
    width: 100%;
    height: 28px;
    background: silver;
}

.testimonials-wrap {
    padding-top: 1.8em;
    width: 768px;
    margin: 0 auto;
}

.testimonial {
    display: flex;
    align-items: center;
    margin-bottom: 4.6em;
}

.testimonial-text {
    margin-left: 2em;
}

.testimonial p { 
    font-size: 1.4em;
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.2em;
}

p.name {
    margin-top: .4em;
    font-weight: 700;
}

.word .info-bar {
    width: 99%;
}

::-webkit-scrollbar-thumb {
  background: silver;
}

::-webkit-scrollbar-thumb:hover {
  background: silver; 
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

pre a,
p.name a {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

/*--------------------------------------------*/

@media only screen and (max-width : 500px) {
	
	/*desktop*/
	
	.desktop {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: flex-start;
	}
	
	.icon {
		width: 85px;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 1em;
		cursor: pointer;
		align-self: center;
	}

	
	a.icon {
		position: static;
		margin: 1em;
	}
	
	/*DIALOGUE BOX*/


	.dialogue-box {
		top: 25vh;
		left: .5vw;
		width: 97vw;;
	}
	
	/*NOTEPAD*/
	
	.notepad {
		width: 97vw;
		height: 600px;
		top: 1vh;
		left: 1vw;
	}

	.text-editor { 
		height: 566px;
	}

	.text-editor pre {
		font-size: .9em;
	}
	
	
/* FOLDER WINDOW*/

	.folder {
		width: 98vw;
		height: 500px;
		top: 6vh;
		left: 1vw;
	}
 
	#randomCrap,
	#games {
		top: 6vh;
		left: 1vw;
	}

	 #puck {
		top: 10vh;
		left: 1vw;
	}

/* WORD */

.text-space {
    height: 80%;
}

.testimonials-wrap {
    padding-top: 1em;
    width: 95%;
    margin: 0 auto;
}

.testimonial {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4.6em;
}

.testimonial-text {
    margin-left: 0;
    text-align: center;
}

.testimonial p { 
    font-size: 1.2em;
}

.testimonial img {
    width: 100px;
    height: 100px;
    margin-bottom: .5em;
}

}





