@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');



/* TEXT */

::-moz-selection { background: #252525; color: #eeebe8}
::selection { background: #252525; color: #eeebe8}


p {
	margin-block-end: 1em;
}

a {
	  display: inline-block;
	  position: relative;
	  text-decoration: none;
	  color: inherit;
	  z-index: 1;
	}
	
	a::after {
	  content: '';
	  position: absolute;
	  left: 0;
	  bottom: .07em;
	  height: .1em;
	  width: 100%;
	  background: linear-gradient(110deg, #e1f549, #29d0be, #6cb8ea, #ff5959);
	  z-index: -1;
	  transition: height .15s cubic-bezier(.6,0,.4,1);
	}
	
	a:hover::after {
	  height: .3em;
	}
	

jumbotron {
	font-size: 6.5vw;
	display: block;
	hyphens: auto;
	z-index: 5;
}

.hideme
{
	opacity:0.2;
}

/* PAGE */


* {
	margin: 0;
	padding: 0;
	font-family: 'Libre Baskerville', serif;
	color: #252525;
	}

html {
	background-color: #eeebe8;
}


header {
	position: fixed;
	top: 30px;
	right: 30px;	
}

body > div {
	padding: 30px;
}

/* body {
	padding-block-end: 10em;
} */

.fade-in-section {
	  opacity: 0;
	  transform: translateY(20vh);
	  visibility: hidden;
	  transition: opacity 0.6s ease-out, transform 1.2s ease-out;
	  will-change: opacity, visibility;
	}
	.fade-in-section.is-visible {
	  opacity: 1;
	  transform: none;
	  visibility: visible;
	}



/* PAGE ELEMENTS */

.name-logo {
	font-size: 1em;
	text-align: right;
}

.name-logo>a::after {
	height: 0em;
}

.center-parent {
	position: relative;
}

.center-child {
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	}

.info-bar {
	display:flex;
	justify-content: space-between;
	width: 100%;
	padding: 0px 30px 0 30px;
	
}

.copyright-info {
	width: 60px;
	margin-left: auto;
}

.content-container {
	margin-right: 206px; 
}

.bottom-left {
	position: fixed;
	bottom: 30px;
	left: 30px;
	
}

.contact-info {
	position: fixed;
	bottom: 48px;
	right: 30px;
}

.vertical-center {
	  margin: 0;
	  position: absolute;
	  top: 50%;
	  -ms-transform: translateY(-50%);
	  transform: translateY(-50%);
	}

.bottom-out {
	position: absolute;
	bottom: 0;
}


/* SECTIONS */

#contact-modal {
	width: 100%;
	height: 100vh;
	background-color: coral;
}



.section {
	padding-block-start: 8em;
	padding-block-end: 8em;
}

/*
.section-1 {
	min-height: calc(100vh - 80px);
	padding-top: 100px;
}
*/

.section-2 {
	
}


/* box-hover */

.box-hover {
	border-radius: 15px;
	transition: 0.4s ease;
}

.box-hover:hover {
	background: #252525;
	color: #eeebe8;
	text-decoration: none;
	padding: 4px 8px;
	border-radius: 15px;
	margin: -4px -8px;
	transition: 0.4s ease;
}

.box-hover:hover::after , .box-hover::after {
	  height: 0em;
	}



/* Animaiton */

.cssanimation, .cssanimation span {
	animation-duration: 1s;
	animation-fill-mode: both;
}

.cssanimation span { display: inline-block }

.elevate { animation-name: elevate }
@keyframes elevate {
	from {
		transform: translate(0%,100%);
		transform-origin: top;
		opacity: 0%;
	}
	
	100% {
		transform: translate(0px,0%);
		transform-origin: top;
		opacity: 100%;
	}
	
}



	

