body {
	background-color: #ccffcc;
	font-family: Segoe UI, Arial;
	line-height: 1.5rem;
}

.header {
	color: white;
	background: #555;
	border: 3px solid red;
	padding: 10px 16px;
	width: 100%;
}

.content {
	padding: 16px;
}

.sticky {
	position: fixed;
	top: 0;
	width: 100%;
}

.sticky + .content {
	padding-top: 102px;
}

div.card {
	background-color: white;
	border-color: black;
	border: 2px solid #777;
    border-radius: 18px;
	box-shadow: 10px 10px 5px #777;
	color: black;
	margin: 1rem 1rem 1rem 1rem;
	max-width: 100%;
    padding: 1rem;
}

#mainFlexContainer {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

a {
	cursor: pointer;
}

a:visited {
	text-decoration: none;
}

form label {
	color: #b46767;
	font-size: 0.9em;
	font-weight: 500;
}

form input[type=text], input[type=time], input[type=date], select {
	margin-bottom: 8px;
	vertical-align: middle;
}

form input[type=text] {
	width: 95%;
}

form input[type=submit] {
	margin-right: 2em;
}

form textarea {
	vertical-align: top;
	margin-bottom: 8px;
	width:	95%;
	height: 100px;
}

hr {
	border-top: 1px solid #ddd;
	margin-bottom: 2em;
	margin-top: 2em;
}

.center {
	text-align: center;
}

.debug {
	font-family: Courier New;
	display: block;
}

.flexRow {
	min-height: 250px;
}

courier {
	color: blue;
	font-family: Courier New;
	font-weight: bold;
}

black {
	color: black;
}

maroon {
	color: #b46767;
}


/************************************************************/
/* Styling for CKEditor
/************************************************************/
.ckeditor-container {
	margin: 0;
	padding: 0;
	width: 100%;
}

.ck-editor__main {
	padding-left: 0;
	padding-right: 0;
}


/************************************************************/
/* @media queries for responsive design
/*
/* Monitor:
/*   width:  1738
/*   height:  829
/*
/* iPhone 14 (Portrait)
/*   width:   389
/*   height:  660
/*
/* iPhone 14 (Landscape)
/*   width:   749
/*   height:  303

/* iPad2 Mini (Portrait)
/*   width:   744
/*   height: 1059
/*
/* iPad2 Mini (Landscape)
/*   width:  1133
/*   height:  670
/************************************************************/

/* Small devices such as large phones (640px and up) */
@media only screen and (min-width: 640px) {
	div.card {
		max-width: 25%;
	}


	/************************************************************/
	/* Styling for CKEditor
	/************************************************************/
	.main-container {
		margin-left: auto;
		margin-right: auto;
	}

	.ck-editor__main {
		padding-left: 0;
		padding-right: 0;
	}
}

@media only screen and (orientation: landscape) {
	div.card {
		max-width: 40%;
	}
}


/****************************************************/
/* Medium devices such as tablets (768px and up) */
/****************************************************/
/* yellow up
/* white down
/* This works well for an iPad2 mini in portrait mode */
@media only screen and (min-width: 744px) and (orientation: portrait) {
	div.card {
		max-width: 40%;
	}
}

/* This works well for an iPad2 mini in landscape mode */
@media only screen and (min-width: 744px) and (orientation: portrait) {
	div.card {
		max-width: 40%;
	}
}


/* Large devices such as laptops (1024px and up) */
@media only screen and (min-width: 1024px) {
	div.card {
		max-width: 25%;
	}
}


/* Largest devices such as desktops (1280px and up) */
@media only screen and (min-width: 1280px) {
}
