@charset "UTF-8";

body {
	margin-top: 15em;
}

p {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
}

section {
	width: 60%;
}

nav {
	width: 40%;
	float: left;
	position: relative;
	z-index: 1;
	
}

.tab {
    width: 2em;
    height: 7em;
    background-color: #F14766;
    margin-bottom: 2em;
    padding-left: 1em;
	transition: width .5s linear;
	overflow: hidden;
}

.tab .reveal {
	opacity: 0;
	transition: opacity .5s linear;
}

.tab:hover {
	width: 8em;
	
}

.tab:hover .reveal {
	opacity: 1;
	
}

.tab p {
	line-height: 7em;
	color: rgba(255,255,255,0.50);
	letter-spacing: .1em;
}

#tab2 {
    background-color: #B0CEC9;
}

#tab3 {
    background-color: #F8B941;
}

#sandwich {
	width: 60%;
	float: left;
	position: relative;

}

#sandwich img {
	width: 100%;
    min-width: 17em;
}

#sandwich .caption {
	width: 7em;
	height: 7em;
	background-color: rgba(255,255,255,0.70);
	border-radius: 50%;
	position: absolute;
	left: 15%;
	top: 16em;
	text-align: center;
	opacity: 0;
	transition: opacity 1s ease;
}

#sandwich .caption p {
	margin-top: 1em;
	line-height: 1.25em;
	font-size: 1.2em;
}

#sandwich:hover .caption {
	opacity: 1;
}