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

html, body {
	margin:0;
  	padding:0;
	width:100%;
 	height:100%;
  	overflow-x:hidden;
}


#background {
	/*background-image:url(media/JumpPic.jpg);
	background-repeat:no-repeat;
	background-size: 100%;*/
    background-image:url(media/beanstalk-dark.png);
  	position:absolute;
  	width:100%;
  /*	height:100%;*/
  	z-index:1;
}

#logo {
	margin: 7px 30px;
}





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

						/*margin - Aussenabstand; padding - Innenabstand*/          

/*------------------------------------ Formatierung Inhalt ------------------------------------*/
                                        	
.content {
    /*position: static; /*default value --> no positioning possibel*/
	float: left;
	/*margin: 20px auto 20px 10%;
	padding: 30px 4% 12px 4%;
	width: 50%;	/*regelt die Breite nach rechts*/
	min-height: 400px;
	background-color: #434F58;
	/*border-radius: 10px;*/
	opacity: 0.99;
    background-image:url(media/beanstalk-dark.png);
  	position:absolute;
  	width:100%;
  	height:100%;
  	z-index:1;
}

.center {
    margin: auto;
    width: 350px;
   /* border: 5px solid #FFFF12;*/
    padding: 5px;
    z-index: 2;
}


.personalInfo {

  margin: auto;
  position: relative;
  width: 340px;
  height: 560px;
 /* left: 35%;    /*defines horizontal position on screen 70% default*/
  top: 10%;
  z-index: 2;
  
  padding: 20px;
  padding-top: 40px;
  background-color: #323c45;
  text-align: center;
  font-family: Tahoma, Geneva, sans-serif;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


name {
    color: #0ece11;
    text-align: center;
    font-size: 26px;    
}

p {
    color: #fff;
    margin-top: 8px;
    font-size: 16px;
}

h2 {
    color: #fff;
}
#picture{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 70px;
    width: 65%;
    
    
}
/*white bg behind social media links*/
#socialMedia {
  /*  line-height: 1.8;*/
    margin-left: -20px; /*to compensate padding from .personalInfo*/
    margin-bottom: 37px;
    width: 380px;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #fff;
    
}

a { color:#fff; }
a:hover { color: #0ece11; }


.highlight:hover {
  color: #ff0000;
}

a {	text-decoration:none; }	


/*--------------------------------- Responsive Layout ----------------------------------------*/
/* When the screen is less than 1200px wide, skip margin on side of the content */
@media screen and (max-width: 1200px) {
 /* .content {   /*include .footer if border is used*/
 /*   width: 90%;
  }
  
/*  .navcontent {   /*include .footer if border is used*/
/*  width: 90%;
/*  }
/*  .carousel-wrapper {   /*include .footer if border is used*/
/*    width: 90%;
/*  }
/*}

/*When the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
   .content, .center {
    width: 98%;
    padding: 0;
    margin: 0;
  }
  .personalInfo {
   /*  left: 10px;
   /* right: 10px;
   /* width: 100%;*/
   }
   .socialMedia {
    /*left: 0px;*/
    /*width: 100%;*/
   }
}


