* {box-sizing: border-box;}
body {
	/* background-color: slategray; */
    background-color: #000;
	margin: 0;
	padding: 0;
	font-family: 'Encode Sans Condensed', sans-serif;
}
/* section#theCV {
	border-width: 20px;
border-style: solid;
border-color: red;
	display: block;
} */
nav {
	display: flex;
	width: 100%;
	justify-content: center;
}
nav a {
	color: white;
	text-decoration: none;
	position: relative;
}
a.printlink {
	margin: 1em 0 0 1em;
	font-size: .8rem;
}
a.printlink img, a.printlink svg {
	height: 1.6rem;
	width: 1.6rem;
}
a.printlink img:hover, a.printlink svg:hover {
	transform: scale(1.6);
	transition:  all 100ms linear;
}
a.lanswitch {
	color: rgb(0,146,180);
	background-color: #fff;
	padding: .5em 1em;
	margin: .8em .7em;
	border-radius: 1em;
	text-transform: uppercase;
	letter-spacing: .1em;
	transition:  all 100ms linear;
	box-shadow: 0px 0px 0px 1px #fff inset;
	font-size: .8rem;
}
a.lanswitch:hover {
	/* transform: scale(1.2); */
}
a.lanswitch:active {
	/* background-color: #000 !important; */
	transition: none;
}
@keyframes balloons {
    0% {opacity: 0;}
    75% {opacity: 1;}
    100% {opacity: 1;}
}
nav a:hover:after {
	content: attr(aria-label);
	display: block;
	position: absolute;
	/*background-color: rgba(0,0,0,.8);*/
	width: 14em;
	color: rgb(0,146,180);
	padding: 1em 1em 0;
	top: 3em;
	left: 50%;
	text-transform: none;
	font-size: 12px !important;
	animation-name: balloons;
    animation-duration: 1s;
    border-left: 1px solid rgb(0,146,180);
    z-index: 2000;
}
nav a.printlink:hover:after {
	font-size: 14px !important;
	margin-top: -.5em;
}
p {
	text-align: right;	
}
@keyframes showoff {
    from {opacity: 0;}
    to {opacity: 1;}
}
.content {
	background-color: black;
	animation-name: example;
	animation-name: showoff;
	animation-duration: 2s;
	box-shadow: 0px 10px 20px 0px black;
}
/* .📄.second, .📄.third {
	position: relative;
} */

.📄 {
	position: relative;
}
/* .📄:hover .img-magnifier-glass {
	visibility: visible;
} */
a.streefflink {
	position: absolute;
	left: 53%;
	top: 67%;
	width: 30%;
	height: 6%;
	transition: 300ms all linear;
	/* background: rgba(40,40,40,.5); */
	z-index: 1000;
}
a.streefflink:hover {
	background: rgba(0,168,198,.2);
}
a.pimientolink {
	position: absolute;
	left: 60%;
	top: 94.3%;
	width: 15%;
	height: 1%;
	transition: 300ms all linear;
	/* background: rgba(251, 6, 6, 0.5); */
	z-index: 1000;
    border-radius: 3em;
}
a.pimientolink:hover {
	background: rgba(82,165,195,.2);
}
img.page {
	width: 100%;
	display: block;
}
.container {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}


.img-magnifier-glass {
    position: absolute;
    border: 3px solid  rgb(0,146,180);
    border-radius: 50%;
    cursor: none;
    /*Set the size of the magnifier glass:*/
    width: 200px;
    height: 200px;
    z-index: 100;
    transition: opacity ease 300ms;
    background-repeat: no-repeat;
    transform: translate(-15px, -15px);
  }


