/*This formats the BARUN KWAK logo on the upper left of all the pages*/
.logo { 
	font-family: "Sofia Pro", Sans-Serif;
	color: #000000;
	font-size: 20px;
	font-weight: bold;
	padding-top: 10px;
	padding-left: 25px;
}

/*Formatting for the hamburger menu on the upper right of all the pages*/
.hamburgericon {
	padding-top: 10px;
	padding-right: 15px;
	float: right}

/*Padding for body*/
.body {
	padding-bottom: 70px;
}

/*Has the header all on the same line*/
.nav {
    display: inline-block;
    font-size: 20px;
}

/*For the books on the index.html page this formats the spacing*/
.bookrow{
	padding-left: 160px;
}

/*Sets the size of the books on index.html*/
.bookimage {
	height: 270px;
	width: 200px;
}

/*Sets the size, padding, and background of the footers*/
.footer {
	height:100px;
	padding-left: 80px;
	padding-top: 10px;
	background-color: #ECECEC;
}

/*Sets the general font and color for the website*/
.text {
	font-family: "Sofia Pro", Sans-Serif;
	color: #000000;
}

/*Centers text*/
.centertext{
	text-align: center;
	margin-top: 3%;
}

/*Text for contact info*/
.contacttext{
	font-size: 25px;
}

/*Formats main titles*/
#title {
	font-size: 40px;
}

/*Formats the work together title on the contact.html page*/
#worktogethertitle {
	font-weight: bold;
}

/*Formats title text*/
.titletext {
	font-size: 40px;
}

/*Formats text on the portfolio piece Cribshare*/
.worktext {
	padding-left: 50px;
}

/*Highlights certain text*/
.highlight{
	font-weight: bold;
	font-size: 25px;
}

/*Formats the overlay that pops up when the user clicks on the hamburger menu*/
#overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 5%;
    background-color: rgba(218,206,176,0.9); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}

/*Formats the overlay text*/
#text{
	font-family: "Sofia Pro", Sans-Serif;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 50px;
    color: black;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);

}

/*Formats links*/
.link {
    color: #000000;
    text-decoration: none;
    -o-transition:.5s;
  	-ms-transition:.5s;
  	-moz-transition:.5s;
  	-webkit-transition:.5s;
  	transition:.5s;
}

/*Makes the links on the overlay popup fade to white when user hovers over text*/
.link:hover 
{
     color:white; 
     text-decoration:none; 
     cursor:pointer;  
}

/*Formats links that aren't on the overlay popup*/
.logolink {
    color: #000000;
    text-decoration: none;
    -o-transition:.5s;
  	-ms-transition:.5s;
  	-moz-transition:.5s;
  	-webkit-transition:.5s;
  	transition:.5s;
}

/*Formats hover for links that aren't on the overlay popup*/
.logolink:hover 
{
     color:black; 
     text-decoration:none; 
     cursor:pointer;  
}

/*Formats the image on about.html*/
#aboutsplash{
	position:relative;
    width:100%;
    height:auto;
}

/*Colors the row for the blurb about me*/
.aboutinfo {
	background-color: #FAE8DA;
}

/*Formats the text for the blurb on the about me page*/
.abouttext {
	padding: 100px 70px 100px 80px;
	text-align: center;
	font-size: 25px;
	text-align: left;
}

/*Format bulleted list*/
.liststyle {
	list-style-type: disc;
}

/*Sets the size for Google Map on maps.html*/
#googleMap {
	width:100%;
	height:600px;
}
