
/* BOOTSTRAP CONFIGURE FOR VERTICAL CENTERING */
.align-items-center {
	-ms-flex-align: center!important;
	align-items: center!important;
}
.d-flex {
	display: -ms-flexbox!important;
	display: flex!important;
}

/************************/
/************************/
/************************/
/************************/
/************************/
/************************/

.bg-alum{
	background-image: url("../img-interface/alum2.png");
}

.h100vh{
	min-height: 100vh;
}

nav{
	border-left: 16px solid black;
}

.syceya-logo{
	height: 2rem;
	margin-right: 1rem;
}

section:first-of-type{
	padding-top: 56px;
}

.screen-wrapper{
	position: relative;
}


.zindex-m10{
	z-index: -10;
}
.zindex-m20{
	z-index: -20;
}
.zindex-p10{
	z-index: 10;
}
.zindex-p20{
	z-index: 10;
}


.pf-vignette{
	/*opacity: .5;*/
}


.text-shadow{
	text-shadow: 0 0 7px rgba(0,0,0, 0.5);
}
.drop-shadow{
	-webkit-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.75);
	   -moz-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.75);
	        box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.75);
}
.drop-shadow-inset{
	-webkit-box-shadow: inset 0px 0px 25px 0px rgba(0,0,0,0.75);
	   -moz-box-shadow: inset 0px 0px 25px 0px rgba(0,0,0,0.75);
	        box-shadow: inset 0px 0px 25px 0px rgba(0,0,0,0.75);
}



#screen-welcome{
	background-image: url(../img-interface/dropscreen-bg.jpg);
	background-size: cover;
    background-position: center; 
}
#screen-presentation{

}
#screen-skills{

}
#screen-other-skills{

}
.more-skills-bg{
	background-color: #f2ffff;
}



.navbar-brand{
	font-size: .9rem;
}
.display-1{
	font-size: 4rem;
}
.display-3{
	font-size: 2rem;
}

/* sm */
@media(min-width:576px){
	.navbar-brand{
		font-size: 1.25rem;
	}
	.display-1{
		font-size: 6rem;
	}
	.display-3{
		font-size: 3rem;
	}
}
/* med */
@media(min-width:768px){
	.display-3{
		font-size: 4.5rem;
	}

}
/* lg */
@media(min-width:992px){

}
/* xl */
@media(min-width:1200px){

}













h2 {
  font: 33px sans-serif;
  margin-top: 30px;
  text-align: center;
  text-transform: uppercase;
}
h2.background {
  position: relative;
  z-index: 1;
}
h2.background:before {
  border-top: 2px solid #000;
  content: "";
  margin: 0 auto;
  /* this centers the line to the full width specified */
  position: absolute;
  /* positioning must be absolute here, and relative positioning must be applied to the parent */
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 95%;
  z-index: -1;
}
h2.background span {
  /* to hide the lines from behind the text, you have to set the background color the same as the container */
  background: #f8f9fa;
  padding: 0 15px;
}