/*Winterbrose Arts and Graphics Stylesheet 2024*/

div.myContainer
{
	background-color: white;
}

.letterBox
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	border-radius: 20px;
	box-shadow: 5px 5px 10px #AAAAAA;
	margin: 20px;
	text-align: center;
	background-color: white;
	color: black;
}

.imgContainer {
	display: flex;
	flex-direction: column;
	margin: 5px;
	border: 1px solid black;
}

.paidContainer {
	display: flex;
	flex-direction: column;
	margin: 5px;
	border: 1px solid black;
	background-color: lightblue;
}

.freeContainer {
	display: flex;
	flex-direction: column;
	margin: 5px;
	border: 1px solid black;
	background-color: lightgreen;
}

div.innerBox
{
	text-align: center;
	padding: 5px;
        margin: 5px;
	float: left;
	background-color: lightblue;
	color: black;
}

div.innerFREE
{
	text-align: center;
	padding: 5px;
        margin: 5px;
	float: left;
	background-color: lightgreen;
	color: black;
}

.myImage
{
	margin: 0 0 0 0;
	text-align: center;
}

div.myText
{
	margin: auto;
        width: 300;
        word-wrap: break-word;
	text-align: center;
}

