/*
BH Final Project
Author: Byron Hardy
 Date created: 05/18/2021

*/


/*
Main Body Content
*/
body{
	background-color: #f1f1f1;
	color: #0d0d0d;
	font-family: "Lato", sans-serif;
	margin: auto;
	
}

/*
Making the Nav Centered
*/

#NavLogo { margin-right: auto; /* 1 */
  margin-left:  auto; /* 1 */
  float: left;
  max-width: 960px; /* 2 */

  padding-right: 10px; /* 3 */
  padding-left:  10px; /* 3 */
  padding-top: 10px;


}

nav{
	text-align: center;
	background-color: white;
	margin: 0;
	
	padding-bottom: 1em;
	padding-right: 10px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: auto;
}
nav ul{
	display:inline-block;
	list-style-type: none;
	margin: 0;
	padding-right: 2em;
	padding-top: 0.5em;
	
}
nav li{
	font-size: 16px;
	display: inline;
	padding-left: 2em;
	width: 30%;
	
	
	
}


nav a:link{
	text-decoration: none;
	color: #0d0d0d;
}
nav a:visited{
	color: #C5A7D9;
}
nav a:hover{
	color: #B796D9;
}

/*
Making the content stay within the containter
*/
#wrapper {

 padding-bottom: 3%; 


  max-width: 960px; /* 2 */

  padding-right: 10px; /* 3 */
  padding-left:  10px; /* 3 */
}

#CenterText {
  height: 500px;
  width: 690px;
  background-size: cover;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  color: #f1f1f1;
 
  
 
}

/*
Making the button and animations
*/

button {
  border: none;
  color: white;
  background-color: #d1d1d1;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  
  }
  .button1 {
  background-color: #d1d1d1; 
  color: black; 
  
}
  
  .button1:hover {
  background-color: #B796D9;
  color: white;
}

/*
darkening the background on the portfolio page
*/

#background-color-portfolio {
	
	background-color: #0d0d0d;
}

#background-image-home {
	
	background-image:
linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(163, 108, 217, 0.85)),
	url(images/purplecomputer.jpg);
	width:100%;
	height: auto;
	background-position: center center;
	
    
	
	
	
}

/*
Giving more top space on the resume page
*/

.Overall { padding-top: 5%;
	
}

footer{
	background: white;
	font-size: small;
	font-style: italic;
	text-align: center;
	padding: 3%;
	
}


/*
making the content responsive
*/

@media (min-width: 600px) {
	nav ul { display:inline-block;
	list-style-type: none;
	margin: 0;
	padding-right: 2em;
	font-size: 1.2em;
	}
	
	nav li { width: 7em;
	}
	
	section { padding-left: 2em;
			  padding-right: 2em;	
	}
	
	#mathero { display: block;
				padding-bottom: 1em;
		
	}
	
	#loungehero {display: block;
				padding-bottom: 1em;
		
	}
	
	
}

@media (min-width: 1024px) {
	
	
	
	header {font-size: 120%;
			
		
	}
	nav {font-weight: bold;
		
	}
	
	.home { height: 50vh;
			padding-top: 5em;
			padding-left: 8em;
	}
	
	.content { height: 30vh;
				padding-top: 2em;
				padding-left: 8em;
	}
	
	#wrapper {width: 80%; margin: auto;
		
	}
	
	
}

/*
CSS Card Creation
*/

*, *:before, *:after {
  box-sizing: inherit;
}

.column {
  float: left;
  width: 48%;
  margin-bottom: 16px;
  padding: 1%;
 
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
 
}

/*
Top About section
*/

.about-section {
  padding: 50px;
  padding-top: 8%;
  background-color: #A36CD9;
  color: white;
}

.container {
  padding: 0 16px;
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 40px
}

.container::after, .row::after {
  content: "";
  clear: both;
  display: table;
}





@media screen and (max-width: 650px) {
  .column {
    width: 100%;
    display: block;
  }
}

.w3-row-padding img {margin-bottom: 12px}


/*
Contact Page section
*/

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}



input[type=submit] {
  background-color: #0D0D0D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #B796D9;
}

