*{
	margin: 0; padding: 0; border: 0;
	box-sizing: border-box;
	}
	
body{
	background-color: hsl(355,90%,80%);
	font-family: verdana;
	color: hsl(200,90%,40%)
	}
	
h1 {
	display: flex; 
	gap: 16px;
	
	}

h1 span { 
	
	flex: 1 0 33%;
	padding: 48px 0;
	text-align: center;
	font-size: 5em;
	background-color:rgba(255,255,255,.4);
	margin: 8px;
	}
	
	p.subtitle {
		background-color:rgba(255,255,255,.4);
		text-align: center;
		padding: 48px 0;
		margin: 0 8px;
		font-size: 2em;
		font-variant: small-caps;
		color: hsl(200,90%,20%);
	}
	
section.examples {
	margin: 8px;
	min-height: 200px;
	background-color:rgba(255,255,255.6);
	padding: 4px 0;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	}
	
.examples div {
	border: 4px solid #345;
	margin:8px;
	flex: 0 0 28%;
	aspect-ratio: 4 / 3;
	}

div.example1 {
	width: 240px; height: 240px;
	min-width: 300px; max-width: 300px;
	border-radius: 50%;
	}
	
div.example2 {
	background-image:repeating-linear-gradient(to bottom right, #FF69B4 0px, #FF69B4 20px, #FFFF00 20px, #FFFF00 40px);
}

div.example3 { /* transition color on hover */
	background-color: #FF69B4;
	Transition: background-color .4s ease-in;
}
div.example3:hover { 
	background-color: #FFFF23;
}
div.example4 {
	background-image: url(../images/food5.jpg);
	background-size: 560px 450px;
}
div.example5{
	font-size: 100px;
}
div.example6{
	background-color: hsl(44, 100%, 83%);
    
    
    
    background-image: url(../images/MTGtoken.jpg);
    transition: transform 0.5s ease-in-out, width 0.5s ease-in-out, height 0.5s ease-in-out;
    background-repeat: no-repeat;
    background-size: cover;
}
div.example6:hover {
    transform: translateX(-50px);
    width: -300px;
    height: -300px;
    border-top: 4px solid white;
border-left: 4px solid white;
border-bottom: 4px solid white;
border-right: 4px solid white;
  }