@charset "UTF-8";
/* CSS Document */

*{
	box-sizing: border-box;
}

body{
	margin: 0;
	padding: 0;
	background-color: #f5f5f5;
}

#appContainer{
	min-width: 860px;
	display: flex;
	flex-direction: column;
	height: fit-content;
	padding-top: 20px;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 0;
	width: fit-content;
}

canvas{
	margin-left: 20px;
	display: flex;
	flex-grow: 9;
	background-color: #C0BFC0;
	margin-bottom: 100px;
}

#imgContainer{
	width: fit-content;
	display: flex;
}

#menu{
	width: 100%;
	display: flex;
	justify-content: flex-start;
	margin-left: 0px;
	margin-right: auto;
	border-radius: 10px;
	border: 1px solid #C0BFC0;
	margin-top: 10px;
	margin-bottom: 10px;
	padding-left: 10px;
}

form{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	border-radius: 10px;
	border: 1px solid #C0BFC0;
	margin-bottom: 10px;
}

.btn{
	display: flex;
	flex-direction: row;
	margin-left: 5px;
	margin-right: 5px;
	border: none;
	border-radius: 10px;
	background-color: #C0BFC0;
	padding: 12px;
	color: rgb(255, 255, 255);
	font-size: 1em;
	line-height: 2em;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-weight: 400;
	cursor: pointer;
}

.btn:hover{
	background-color: #ff605c;
}

#downloadLink{
	display: flex;
	flex-direction: row;
	margin-left: 5px;
	margin-right: 5px;
	border: none;
	border-radius: 10px;
	background-color: #C0BFC0;
	padding: 12px;
	color: rgb(255, 255, 255);
	font-size: 1em;
	line-height: 2em;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-weight: 400;
	cursor: pointer;
}

#downloadLink:hover{
	background-color: #00ca4e;
}

#colorsContainer{
	display: flex;
	flex-direction: row;
	float: left;
	align-items: center;
	width: 100%;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	border-radius: 10px;
	border: 1px solid #C0BFC0;
}

#colorsContainer p{
	font-size: .75em;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	margin-left: 10px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.btnColor{
	float: left;
	align-items: center;
	margin-left: 20px;
	margin-bottom: 10px;
	margin-top: 10px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	cursor: pointer;
}

.btnColor:hover{
	border-radius: 50%;
	border: 1px solid #C0BFC0;
}

#btn01{
	background-color: #33BB55;
}
#btn02{
	background-color: #202E83;
}
#btn03{
	background-color: #4764FC;
}
#btn04{
	background-color: #E45A4F;
}
#btn05{
	background-color: #F9EDAE;
}
#btn06{
	background-color: #FAD4A8;
}
#btn07{
	background-color: #131B4D;
}
#btn08{
	background-color: #D1E0FF;
}

#fileContainer{
	display: flex;
	flex-direction: row;
	width: 100%;
	margin-left: 0;
	margin-right: auto;
	padding-left: 16px;
	padding-top: 10px;
	padding-bottom: 10px;
	align-items: center;
	border-radius: 10px;
	border: 1px solid #C0BFC0;
}

#info{
	width: 30px;
	height: 100%;
	float: right;
	margin-left: auto;
	margin-right: 10px;
}

.st0{
	fill:#C0BFC0;
	cursor: pointer;
}
.st0:hover{
	fill:#ff605c;
	cursor: pointer;
}

.st1{
	fill:#F5F5F5;
	cursor: pointer;
}

input[type=file]::file-selector-button{
	border-radius: 10px;
	border: none;
	margin-right: auto;
	width: 120px;
	height: 30px;
	background-color: #C0BFC0;
	color: #fff;
	margin-right: 10px;
	cursor: pointer;
}

input[type=file]::file-selector-button:hover{
	background-color: #ff605c;
	cursor: pointer;
}
form{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}

#headerDiv{
	flex: 1;
	width: fit-content;
	height: fit-content;
	margin: 5px;
	padding: 5px;
}

#paragraphDiv{
	flex: 2;
	width: fit-content;
	height: fit-content;
	margin: 5px;
	padding: 5px;
}

label{
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#infoScreen{
	position: absolute;
	margin-left: auto;
	margin-right: auto;
	top: 50%;
	left: 50%;
	width: 800px;
	min-width: 800px;
	padding-left: 100px;
	padding-right: 100px;
	padding-top: 100px;
	height: 600px;
	background-color: #f5f5f5;
	border-radius: 10px;
	border: 1px solid #C0BFC0;
	transform: translate(-50%, -50%);
	z-index: 9999;
}

#infoContent{
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	font-size: 1.2em;
	color: #5c5c5c;
}

#closeInfo{
	position:absolute;
	top:0px;
	right: 20px;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	font-size: 2em;
	line-height: .25em;
	color: #5c5c5c;
	cursor: pointer;
}

.hidden{
	display: none;
}

#foo{
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	font-size: .6em;
	margin-top: 50px;;
	margin-left: auto;
	margin-right: auto;
	color: #5c5c5c;
	text-align: center;;
}