@charset "UTF-8";
/* CSS Document */

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, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

*{
	box-sizing:border-box;}
	
.wrapper{
	width: 960px;
	height: 600px;
	margin: auto;
	border: 2px solid #FFFFFF;
	
	}
body
{
  margin: 0px;
  padding: 0px;
  
  /* general or default page settings */
  background: #060606;
  color: #cdcdcd;
  font-family: "Avenir Next", "Avenir", sans-serif;
}

a
{
  text-decoration:blink;
  color: #060606;
  
  transition: color 0.3s ease;
}

a:hover
{
  color: #1BF2DA;
}

#menuToggle
{
  display: block;
  position: relative;
  top: 50px;
  left: 50px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: wait;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/* hamburger */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #1BF2DA;
  border-radius: 10px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #1BF2DA;
}

/*
 * hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 200px;
  margin: -100px 0 0 -50px;
  border:4px solid #212121;
  padding: 50px;
  padding-top: 125px;
  background: #BCBCBC;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0) ;
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's fade it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: scale(1.0, 1.0);
  opacity: 1;
}
 /*submenu		*/
		#menu:ul li ul{
    position:absolute;
	
	list-style-type: none;
	 -webkit-transition: all 0.8s ease 0s;
       -moz-transition: all 0.8s ease 0s;
        -ms-transition: all 0.8s ease 0s;
         -o-transition: all 0.8s ease 0s;
            transition: all 0.8s ease 0s;
}
		
ul li:hover ul{
      opacity:1;
	
}
/*submenu	ends*/


.holder{
	border: 6px solid #212121;
	background-image: url(IMG_1969_blur.png);
	background-repeat: no-repeat;
	background-position: center;
	padding-top: 50px;
	margin: 110px auto 40px auto;
	height: 500px;
	width:1200px;
	background-color:#A1A1A1;
	
	}
.welcome{
	
	font-size: 45pt;
	font-family: "Avenir Next", "Avenir", sans-serif;
}

.teal{
	
	
	color:#1BF2DA;
	}
.xl-font{
font-size: 100px;
}
.script{
	font-family: "Oleo Script",Aguafina Script,Pinyon Script,Lily Script One, cursive;
}
/******** About Page Begins ********/
#about-text{
	width: 400px;
	margin-top:30px;
	font-size: 13.5pt;
	}
	.img{
		height: 300px;
		width: 400px;
		border: 6px solid #212121;
		margin-top: 30px;
	background-image: url(about_pic_BW.png);
	background-repeat: no-repeat;
	background-position: center;
	}
	/******** About Page Ends ********/
	
	
	/******** Portfolio Page Begins ********/
	.container{
	/*border: 1px solid red;*/
	width: 50%;
	margin:150px auto 0px auto;
	overflow: auto;
}
.half{
	float: left;
	/*border: 1px solid blue;*/
	width: 50%;
	overflow: auto;
	box-sizing:border-box;
}
	.port-box{

		/*float:left;*/
		width:300px;
		height: 300px;
		border:6px solid #212121;
		padding-top: 100px;
		margin:auto;
	}
	/******** Portfolio Page Ends ********/
	
	
	/******** Resume Page Begins ********/
	#resumeMargin{
		margin-left:290px;
		margin-right:290px;
		}
	.res-cap{
		font-size:18pt;
			}
	.res-text{
		}
		.res-li{
			list-style-type: circle;
			}
	/******** Resume Page Ends ********/
	
	/******** Resume Page 2 begins ********/
	#wrapper{
width:900px;
height:600px;
margin:auto;	
	}
	
.fadein { position:relative; width:900px; height:600px; margin:auto; }
.fadein img { position:absolute; left:0; top:0; }

      /******** Resume Page 2 ends ********/
	
	
	/*breakpoint screens smaller than 500px*/
	
@media only screen and (max-width: 1340px) {
    body {
        /*background-color: lightblue;*/
    }
    #resumeMargin{
    	width: 80%;
    	margin: auto;
    }
}
	
	
	
	