/* ----------------------------------------------------
  Created by Christina Truong for Ladies Learning Code
  http://ladieslearningcode.com
  http://christinatruong.com
-------------------------------------------------------*/


/* GLOBAL STYLES
-----------------------------------------*/
html,
body {
  height: 99%;
}
body {
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: #333333; /* dark, almost black, gray colour */
}
h1,
h2 {
  font-family: "Nixie One", serif;
  font-weight: 300; /* removes default bold styles */
  text-transform: uppercase;
  margin: 0; /* removes default space */
}
a {
  color: #ef48d0;
  text-decoration: none; /* removes default underline */
}
a:hover {
  background: rgba(255, 255, 255, 0.3);
}
header,
main,
nav {
  padding: 20px 30px;
}
main {
  clear: both;
}
.highlight {
  color: #ef48d0;
}


/* HEADER STYLES
-----------------------------------------*/
header h1 {
  font-size: 48px;
}
header h2 {
  font-size: 22px;
}
header {
  float: left;
}
nav {
  float: right;
}
nav a {
  padding: 20px;
}

/* HOME PAGE STYLES
-----------------------------------------*/

.home {
}

/* ABOUT STYLES
-----------------------------------------*/

.about {
}

blockquote {
  clear: both;
  padding: 5px 150px 0;
  text-align: center;
}
blockquote p {
  font-family: "Annie Use Your Telescope", cursive;
  font-size: 30px;
}

.about-text {
	width: 50%;
	float:right;
	background: rgba(255, 255, 255, 0.7);
	padding: 10px;
}


/* CONTACT STYLES
-----------------------------------------*/

.contact {
}

.contact main {
  /* background: rgba(255, 255, 255, 0.7);*/
  padding-top: 40px;
  padding-bottom: 40px;
}
.contact main h1 {
  text-transform: none;
}

/* form styles */
form {
  width: 400px;
}
input,
textarea {
  border: 1px solid #BF6D50;
  width: 400px;
  margin-bottom: 10px;
}
input {
  height: 20px;
} 
textarea {
  height: 100px;
}
button {
  background: #ef48d0;
  border: none;
  padding: 10px 40px;
  font-size: 16px;
}

/* Portfolio Styles */

.portfolio-links-wrap {
	text-align: center;
}


.portfolio-links {
	width: 80%;
	height: 450px;
	background: rgba(255, 255, 255, 0.8);
	display: inline-block;
	text-align: left;
	overflow-y: scroll;
	margin: 20px;
	padding: 10px;
}


/* Background images. 

   See: https://css-tricks.com/perfect-full-page-background-image/ tip #2
*/

img.bg {
  /* Set rules to fill background */
  min-height: 100%;
  min-width: 1280px;
	
  /* Set up proportionate scaling */
  width: 100%;
  height: auto;
	
  /* Set up positioning */
  position: fixed;
  top: 0;
  left: 0;
  
  z-index: -1;
}

@media screen and (max-width: 1280px) { /* Specific to this particular image */
  img.bg {
    left: 50%;
    margin-left: -640px;   /* 50% */
  }
}

/* FOOTER STYLES
-----------------------------------------*/
/* Sticky Footer - http://css-tricks.com/snippets/css/sticky-footer */
.page-wrap {
  min-height: 100%;
  margin-bottom: -55px; /* must be the same height as footer */
}
.page-wrap:after {
  content: "";
  display: block;
}
footer, 
.page-wrap:after {
  height: 55px; /* however tall you want the footer to be */
  color: #DCDCDC;
}
footer {
  /* background: rgba(255, 255, 255, 0.4); */
  text-align: center;
  padding: 5px;
  text-transform: lowercase;
}




