/* Defaults */

.blue-text {
		color: blue;
	}

.green-text {
		color: green;
	}

/* Landscape Screen Light Blue background-color: #ADD8E6; */

img {
	object-fit: contain;
	width: 30%;
 	height: auto;
  	flex-shrink: 0;
  	flex-grow: 0;
	min-width: 30%;
	margin-right: 2rem;
	}

.img-wrapper {
  flex: 1 1 320px;
  min-width: 30vw;
  max-width: 100%;
  padding: 12px;
  border: 6px solid #0066cc;
  border-radius: 12px;
  background: white;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

font {
		font-size: xx-large;
	}

.container {
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		padding: 2rem;    
	}


/* Portrait Screen Pink background-color: #fee;*/

@media (max-aspect-ratio: 49/51)  {

	img {
		width: 90%;
		
	}

	font {
		font-size: x-large;
	}

	.container {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 2rem;
	}

	
}


