/*CSS Document used for csmith.click*/

/*Main*/

body {
	font-family: Arial, sans-serif;
	/*background-color: #F5F5F5; */
	/*color: #333333; dark gray*/
	/*background: linear-gradient(90deg, rgba(201,201,201,0.8113445207184437) 0%, rgba(244,209,191,0.82535012295934) 50%, rgba(201,201,201,0.8309523638556986) 100%); tan gradient*/ 
	/*background: linear-gradient(90deg, rgba(201,201,201,0.8113445207184437) 0%, rgba(218,232,240,0.82535012295934) 50%, rgba(201,201,201,0.8309523638556986) 100%); light blue gradient*/
	background: radial-gradient(circle, rgba(255,255,255,0.8925770137156425) 13%, rgba(219,219,219,0.8869747728192839) 100%);
	color: black;

}

nav {
	background: linear-gradient(90deg, rgba(159,159,159,1) 0%, rgba(34,66,85,0.7833333162366509) 50%, rgba(159,159,159,0.8309523638556986) 100%);
	color: #ffffff; /*white*/
	text-align: center; 
	padding: 20px;
	
}

nav a {
	color: #ffffff;
	margin: 0 15px;
	text-decoration: none;

}

/*text on hover*/
nav a:hover {
	color: #b39de7; 
	transition: .3 ease all;
}

main {

}

h1{
	text-align: center;
	font-family: Fira Sans;
	color: black; 
	text-shadow: -1px -1px 0 white;
	padding: 5px;
}

h2{
	text-align: center;
	font-family: Fira Sans;
	color: black; 
	
}

footer {
	text-align: center;
	padding-bottom: 30px;
}

/*Classes*/

.fancyheading{
	padding: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 25px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	text-shadow: -1px -1px 0 gray;	
}

/*portrait on Home Page*/
.portrait-container {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;	
	margin-top: 1px;
}
.portrait-wrapper, .logo-wrapper{
    text-align: center; /* Center the text within the wrapper AKA figcaption */
    margin-top: 10px; 
}
.portrait {
	width: 35%;
    height: 50%;
	border-radius: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	display: block;

}

.overlay-text {
	display: inline;
	left: 50%;
	top: 60%;
	color: black;
    font-size: 2em; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
	transform: translateX(-50%);
}

.bio {    /*used on Home and About*/
	margin: auto;
	padding: 10px 20px 20px; /*top sides bottom*/
	text-align: center;
}

.skills {  /*used on home page*/
	display: flex;
	justify-content: space-evenly;
	margin-right: 4%;
}

.skillbox {   /*used on home page*/
	border: none;
	background-color: #476b7c;
	color: #ffffff;
	padding: 15px 30px;
	display: inline-block;

}

.textbox1{
	text-align: center;
	
}



/*flipcard code*/
.flip-card {
	background-color: transparent;
	width: 250px;
	height: 200px;
	border: 1px solid #f1f1f1;
	perspective: 1000px; 

}

/* This container is needed to position the front and back side */
.flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;

}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden; /* Safari */
	backface-visibility: hidden;
}

/*front side fallback if image is missing */
.flip-card-front {
	/*background-color: #476b7c;*/
	background: radial-gradient(circle, rgba(148,194,216,1) 0%, rgba(49,63,72,1) 100%);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
}

.flip-card-back {
	background-color: #313f48;
	color: white;
	transform: rotateY(180deg);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
} 

.allcards{ /*also used for cert cards*/
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	padding: 25px;
}

/*cert-cards*/

.cert-card{
	background-color: transparent;
	border: 1px solid #476B7C;
	margin-top: 20px;
	padding: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cert-card-front{ /*fallback if image is missing*/
	/*background-color: #476b7c;*/
	background: radial-gradient(circle, rgba(148,194,216,1) 0%, rgba(49,63,72,1) 100%);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;	
}

.cert-card:hover {
  /*transform: ;*/
  /*filter: blur(5px);*/
  transform: scale(1.4);
}


/*projects*/
.projectcontainer{
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	box-sizing: border-box;
	padding: 20px;
	
}

.projecttext{
	flex: 0 0 50%;
	text-align: left;
}

.slideshow-container{
	flex: 0 0 50%;
	display: flex;
	justify-content: center;
	text-align: center;	
	max-width: 100%;
    height: auto;	
	max-width: 1000px;
	position: relative;
	margin: auto;	
	
}


/* Hide the images by default */
.projectSlides {
  display: none;
}
/* Show the first slide */
.projectSlides:first-child {
   display: block;
}


/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: darkgray;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right and prev to left */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
	color: black;
	font-size: 15px;
	padding-top: 8px;	
	padding-bottom: 8px;
	position: absolute;
	bottom: -25px;
	width: 100%;
	right: 0px;
  
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/*copy and paste for new projects*/
.projectSlides1 {
  display: none;
}
/*copy and paste for new projects*/
.projectSlides1:first-child {
   display: block;
}
.projectSlides2 {
  display: none;
}
.projectSlides2:first-child {
   display: block;
}
.projectSlides3 {
  display: none;
}
.projectSlides3:first-child {
   display: block;
}




/*Company Logos on About Me page*/
.expcontainer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.tablecontainer{
	grid-column: 2;
	align-items: center;
	justify-content: center;
	display: flex;

}
.logocontainer{
	display: grid;
	grid-column: 1;
	align-items: center;
	justify-content: center;
}

.table1{
	text-align: center;
	list-style-position: inside;

}
.logo{
	display: block;	
	width: 75%;
    height: 75%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	
}
.logo-container{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;	
	margin-top: 1px;
}