/*
Stylesheet for JohnaLatouf.com index page
author: Johna Latouf

*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Body
2.0 - Typography
3.0 - Elements
4.0 - jQuery Tool Tip

--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - Body
--------------------------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: 'Vollkorn', sans-serif;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
html {

	}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
	background-image: url('../img/paper.png');
}



/*--------------------------------------------------------------
2.0 - Typography
--------------------------------------------------------------*/
#johna {
	font-family: 'Vollkorn', sans-serif;
	font-style: italic;
	font-size: 87pt;
	color: #df9a4a;
	text-indent: 0;
	margin-left: -65px;
}

#latouf {
	font-family: 'Vollkorn', sans-serif;
	font-style: italic;
	font-size: 59pt;
	color: #38685b;
	margin-left: 115px;
}

#com {
	font-family: 'Vollkorn', sans-serif;
	font-style: italic;
	font-size: 35pt;
	color: #df9a4a;
	line-height: 0.5;
	margin-left: -125px;
}

p.linkname {
	color: #fff;
	font-family: 'Ubuntu', sans-serif;
	font-weight: 400;
	font-size: 28pt;
	margin: 237px 0 0 5px;
	text-shadow:
    -2px -2px 0 #44614c,  
    2px -2px 0 #44614c,
    -2px 2px 0 #44614c,
    2px 2px 0 #44614c;
}




/*--------------------------------------------------------------
3.0 - Elements
--------------------------------------------------------------*/

#title {
	width: 300px;
	line-height: 0.75;
	margin-left: auto;
	margin-right: auto;
	border: 0 solid #AAFFCC;
	margin-top: 40px;
	margin-bottom: 0;
}

div.sitelink {
	height: 335px;
	width: 373px;
	border: 0 solid #AAFFCC;
	display: inline-block;
	margin: 1em;
	opacity: 0.9;
	
}

div.sitelink:hover {
	opacity: 1;
}

#container{
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

#art {
	background-image: url('../img/link_art.png');
}

#dev {
	background-image: url('../img/link_dev.png');
	
	
}
#git {
	background-image: url('../img/link_git.png');
	
	
}



/*--------------------------------------------------------------
4.0 - jQuery Tool Tip
--------------------------------------------------------------*/

.ui-tooltip, .arrow:after {
	background-color: rgba(24, 53, 65, 0.7);
    border: 2px solid white;
    pointer-events:none;
  }
  .ui-tooltip {
  
    padding: 10px 20px;
    color: white;
    border-radius: 20px;
    font: 14px "Vollkorn", Sans-Serif;
    box-shadow: 0 0 2px black;
  }
  .arrow {
    width: 70px;
    height: 16px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    margin-left: -35px;
    bottom: -16px;
  }
  .arrow.top {
    top: -16px;
    bottom: auto;
  }
  .arrow.left {
    left: 20%;
  }
  .arrow:after {
    content: "";
    position: absolute;
    left: 20px;
    top: -20px;
    width: 25px;
    height: 25px;
    box-shadow: 6px 5px 9px -9px black;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .arrow.top:after {
    bottom: -20px;
    top: auto;
  }
