/* 

Lauren Brady


/* style your links */

@font-face { 
	font-family: "AkzidenzGroteskStd-Regular"; 
	src: url("../fonts/AkzidenzGroteskStd-Regular.otf");
}


@font-face { 
	font-family: "AkzidenzGroteskStd-Bold"; 
	src: url("../fonts/AkzidenzGroteskStd-Bold.otf");
}

@font-face { 
	font-family: "AkzidenzGroteskStd-LightEx"; 
	src: url("../fonts/AkzidenzGroteskStd-Light.otf");
}

@font-face { 
	font-family: "AkzidenzGroteskStd-Super"; 
	src: url("../fonts/AkzidenzGroteskStd-Super.otf");
}

body {
	font-family: "AkzidenzGroteskStd-Regular";
	font-weight: normal;
	font-style: normal;
	font-size: 18px;
	/* you'll need to adjust line-height and letter-spacing depending on the typeface you use '*/
	line-height: 1.5;
	letter-spacing: 0.01em; 
	text-rendering: optimizeLegibility; /* improves optical kerning */
}

h1, h2, h3, h4, h5, h6, { font-family: "AkzidenzGroteskStd-Bold"; }

strong {font-family: "AkzidenzGroteskStd-Super";}

a:link { 

}

a:visited {

}

a:hover {

}

a:active {

}

/* you can style your elements however you'd like. I'm adding a border so we can see them */
iframe {
	border: solid black 1px;
	width: 100%;
}

pre {
	border: solid blue 1px;
}

/* max-width: 100%; will prevent an element from extending beyond the page boundaries */
img {
	max-width: 100%;
}

/* width: 100%; will force an element to adopt the width of the page boundaries */
img.full-width {
	width: 100%;
}


/* CLASSES
---------- */

/* to apply different styles to different pages, you can add a class name to the body. when doing this, think about what you're changing and why. the overall structure and typogrphy around your site should feel consistent. any changes or deviations should be meaningful. click around between all the pages in this site so you can see how these classes and their respective styles are being applied. */
.home { 
	background: lavenderblush;
}
.project-01 {
	background: lavenderblush;
}

.project-02 {
	background: lavenderblush;
}

.project-03 {
	background: lavenderblush;
}

.small {
	height: 300px;
}

.tall {
	height: 500px;
}



/* CONTAINERS
---------- */
/* why we use wrappers, here: http://stackoverflow.com/a/5275428 */

.wrapper { 
	width: 90%; 
	max-width: 900px; 
	margin-left: auto; margin-right: auto; 
}

.header {
	padding-top: 30px;
	padding-bottom: 30px;
}

.footer {
	padding-top: 30px;
	padding-bottom: 30px; 
}


