
/* 

Your Name

*/

/* to set general font styles across the entire site, do it here. this will help ensure consistency */
body {
    font-family: helvetica;
    
}

/* to set font styles on specific elements, do it like this. you will now overwrite the styles set on the body */
p {  
    font-family: helvetica;
    margin-bottom: 1em;
    
}

/* style your links */
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 red 1px;
    width: 100%;
    height: 500px;
}

/*pre {
    border: solid blue 1px;
}

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



/* CONTAINERS
---------- */
/* why we use wrappers, here: http://stackoverflow.com/a/5275428 */
.wrapper {
    margin: 30px auto;
    max-width: 90%;
}