@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

.flags {
	border: solid white 3px;
	border-radius: 50%;
}

.menuOptions{
	font-family: 'Monoids';
}

.menuOptions:hover{
	color: white !important;
}

.mainBackground{
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}

.mainTitle{
	font-family: 'Courier New', Courier, monospace;
}

.cardTextAlignment {
	text-align: center;
}

.card-footer {
	text-align: center;
}

/* Degrade experience */
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* Controls the container size in large screens */
@media (min-width: 1200px){
	.container, .container-lg, .container-md, .container-sm, .container-xl {
		max-width: 1945px !important;
	}	
}

/* Typing experience */
.typewriter{
	overflow: hidden; /* Ensures the content is not revealed until the animation */
	border-right: .15em solid rgb(107, 27, 96); /* The typwriter cursor */
	white-space: nowrap; /* Keeps the content on a single line */
	margin: 0 auto; /* Gives that scrolling effect as the typing happens */
	letter-spacing: .15em; /* Adjust as needed */
	animation: 
		typing 3.5s steps(40, end),
		blink-caret .75s step-end infinite;
	}
	  
	  /* The typing effect */
	  @keyframes typing {
		from { width: 0 }
		to { width: 100% }
	  }
	  
	  /* The typewriter cursor effect */
	  @keyframes blink-caret {
		from, to { border-color: transparent }
		50% { border-color: white }
	  }

body {
	line-height: 1;
}

.importantTitle {
	font-family: 'Monoids';
	font-size: 50px;
	text-align: left;
}

.highlightedTitle {
	font-family: 'Monoids';
	font-size: 50px;
	text-align: center;
}

.languages {
	text-align: center;
}

/* Footer icons */
ul.icons {
	cursor: default;
	list-style: none;
	padding-left: 0;
}

ul.icons li {
	display: inline-block;
	padding: 0 1rem 0 0;
}

/* Wrapper */
.wrapper {
	padding: 6rem 0 4rem 0 ;
	position: relative;
	margin: 0;
}

	/* Cert control */
	.wrapper > .inner {
		margin: 0 auto;
		width: 80rem;
	}

	.wrapper.style {
		background-color: #f2f2f2;
		color: #a6a6a6;
	}
		
/* Flexgrid - Biography section*/
.grid-style {
	width: 100%;
	margin: 0 0 2.5rem 0;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-moz-align-items: stretch;
	-webkit-align-items: stretch;
	-ms-align-items: stretch;
	align-items: stretch;
}

/* Header */

	/* Visible menu button while scrolling */
	@keyframes reveal-header {
		0% {
			top: -4em;
			opacity: 0;
		}

		100% {
			top: 0;
			opacity: 1;
		}
	}

#header {
	background: rgba(0, 0, 0, 0.975);
	color: #a6a6a6;
	cursor: default;
	height: 3.25em;
	left: 0;
	line-height: 3.25em;
	position: fixed;
	text-align: right;
	top: 0;
	width: 100%;
	z-index: 10001;
}

#header > a {
	-moz-transition: color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
	display: inline-block;
	padding: 0 0.75em;
	color: inherit;
	text-decoration: none;
	color: white;
}

/* Handles the reveal animation of the menu bar */
#header.reveal {
	-moz-animation: reveal-header 0.5s ease;
	-webkit-animation: reveal-header 0.5s ease;
	-ms-animation: reveal-header 0.5s ease;
	animation: reveal-header 0.5s ease;
}

#header.alt {
	-moz-animation: none;
	-webkit-animation: none;
	-ms-animation: none;
	animation: none;
	background-color: transparent;
	box-shadow: none;
	overflow: hidden;
	position: absolute;
	top: 1.5em;
}

/* Handles the sidebar for the menu */
#menu {
	-moz-transform: translateX(20rem);
	-webkit-transform: translateX(20rem);
	-ms-transform: translateX(20rem);
	transform: translateX(20rem);
	-moz-transition: -moz-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
	-webkit-transition: -webkit-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
	-ms-transition: -ms-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
	transition: transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
	-webkit-overflow-scrolling: touch;
	background: rgba(0, 0, 0, 0.95);
	box-shadow: none;
	color: #000;
	height: 100%;
	max-width: 80%;
	overflow-y: auto;
	padding: 3rem 2rem;
	position: fixed;
	right: 0;
	top: 0;
	visibility: hidden;
	width: 20rem;
	z-index: 10002;
}

	#menu > ul {
		margin: 0 0 1rem 0;
	}

		#menu > ul.links {
			list-style: none;
			padding: 0;
		}

			#menu > ul.links > li {
				padding: 0;
			}

				/* Menu items style */
				#menu > ul.links > li > a:not(.button) {
					border: 0;
					border-top: solid 1px rgba(255, 255, 255, 0.125);
					color: rgba(255, 255, 255, 0.5);
					display: block;
					line-height: 3.5rem;
					text-decoration: none;
					text-transform: uppercase;
				}

				#menu > ul.links > li:first-child > a:not(.button) {
					border-top: 0 !important;
				}

		/* Enablement of the button */
		#menu.visible {
			-moz-transform: translateX(0);
			-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
			box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.2);
			visibility: visible;
		}

.banner {
	background-color: #8a4680;
	color: #e2d1df;
	padding: 8em 0;
	position: relative;
}

	/* Controls the banner for smarphones */
	@media screen and (max-width: 736px) {

		.banner > article .inner {
			width: 90%;
		}

		.banner > article p {
			margin-bottom: 1rem;
		}

		.banner > article h2 {
			font-size: 4em;
		}

	} 

	.banner.full {
		padding: 0;
		min-height: 100vh;
		height: 100vh !important;
	}

	.banner > article {
		-moz-transition: opacity 1.5s ease, visibility 1.5s;
		-webkit-transition: opacity 1.5s ease, visibility 1.5s;
		-ms-transition: opacity 1.5s ease, visibility 1.5s;
		transition: opacity 1.5s ease, visibility 1.5s;
		background-attachment: fixed;
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		height: 100%;
		left: 0;
		opacity: 0;
		position: absolute;
		text-align: center;
		top: 0;
		visibility: hidden;
		width: 100%;
		z-index: 0;
	}

		.banner > article:before {
			content: '';
			display: inline-block;
			height: 100%;
			vertical-align: middle;
		}

		/* Overflowing text */
		.banner > article .inner {
			position: relative;
			display: inline-block;
			vertical-align: middle;
			z-index: 1;
		}

			.banner > article .inner > :last-child {
				margin-bottom: 0;
			}

		.banner > article h2 {
			font-size: 7rem;
			margin-bottom: 0;
			color: #FFF;
			font-weight: 300;
		}

			.banner > article h2:after {
				display: none;
			}

		.banner > article p {
			color: rgba(255, 255, 255, 0.65);
			text-transform: uppercase;
			font-size: 1rem;
			font-weight: 300;
			margin: 0;
			padding-bottom: 1.75rem;
			letter-spacing: .25rem;
		}

			.banner > article p:after {
				content: '';
				position: absolute;
				margin: auto;
				right: 0;
				bottom: 0;
				left: 0;
				width: 50%;
				height: 1px;
				background-color: rgba(255, 255, 255, 0.65);
			}

		.banner > article img {
			display: none;
		}

		/* Enablement of banner */
		.banner > article.visible {
			opacity: 1;
			visibility: visible;
		}

/* Footer */
#footer {
	padding: 4rem 0 2rem 0 ;
	background: #000;
	text-align: center;
}

#footer .copyright {
	color: #bbb;
	font-size: 0.9rem;
	margin: 0 0 2rem 0;
	padding: 0;
	text-align: center;
}

/* Controls the style of small screens (iphone6/7/8 mainly) */
@media screen and (max-width: 736px) {
	html {
		font-size: 12pt;
	}

	h2{
		font-size: 35px;
	}

	#header > a {
		padding: 0 0.5em;
	}

		#header > a + a[href="#menu"]:last-child {
			padding-left: 1em;
			margin-left: 0.25em;
		}

		#header > a:last-child {
			padding-right: 1em;
		}
	
	.wrapper {
		padding: 3rem 0 1rem 0 ;
	}
		.wrapper > .inner {
			width: 90%;
		}
	
	#menu {
		padding: 2.5rem 1.75rem;
	}
		#menu .close {
			height: 4rem;
			line-height: 4rem;
		}
	
	#main {
		padding: 3rem 0 1rem 0 ;
	}

	#footer {
		padding: 3rem 0 1rem 0 ;
	}

} 

/* Controls the certifications section in large screens */
@media screen and (min-width: 1200px) {
	.adjustFit {
		width: 100%;
		height: 20vw;
		object-fit: cover;
	}
}
