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

::before,
::after {
box-sizing: border-box;
}

.flexbox-container {
    padding: 44px;
	display: flex;
	margin: 1rem 24rem;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: stretch;
	align-content: space-around;
	margin-bottom: 44px;	
	/*
	justify-content: center or space-between or space-around;
	align-items: (Y axis spread/top/bottom) center or flex-end or flex-start or stretch;
	align-content: ((lesser used) Y axis align top/bottom) flex-end or flex-start or or space around or space between;	
	*/		
}

.flexbox-item {
    padding: .5em;
	margin: 10px;
	/* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5); */
	background-color: #fff;
    min-width: 210px;
}

.flexbox-item-1 {
    width: 600px;
	flex-shrink: 0;
    align-content: center;
    flex-grow: 1;
}
.flexbox-item-2 {
	flex-grow: 2;

}
.flexbox-item-3 {
    max-width: 150px;
	flex-grow: 1;
}

/* .flextext-container {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5);
	background-color: #d3d3d3;
	margin: 4rem;
	padding: 44px;
	display: block;
	justify-content: space-around;
	align-items: stretch;
	align-content: space-around;
	margin-bottom: 44px;	
} */