*{
    margin: 0;
    padding: 0;
    font-family: 'Abel', sans-serif;
}

html {
    scroll-behavior: smooth;
   }

.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(45deg, rgba(0,96,172,1) 0%, rgba(0,96,172,1) 17%, rgba(2,38,85,1) 86%, rgba(2,38,85,1) 100%);
    background-position: center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.headerAbout{
    min-height: 10vh;
    width: 100%;
    background-image: linear-gradient(45deg, rgba(0,96,172,1) 0%, rgba(0,96,172,1) 17%, rgba(2,38,85,1) 86%, rgba(2,38,85,1) 100%);
    background-position: center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.headerProjects{
    min-height: 60vh;
    width: 100%;
    background-image: linear-gradient(45deg, rgba(0,96,172,1) 0%, rgba(0,96,172,1) 17%, rgba(2,38,85,1) 86%, rgba(2,38,85,1) 100%);
    background-position: center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.headerContact{
    min-height: 60vh;
    width: 100%;
    background-image: linear-gradient(45deg, rgba(0,96,172,1) 0%, rgba(0,96,172,1) 17%, rgba(2,38,85,1) 86%, rgba(2,38,85,1) 100%);
    background-position: center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

.name-link{
    flex: 1;
    text-align: left;
}
.name-link p{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.name-link p a{
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    letter-spacing: 0px;
    transition: 0.2s;
}
.name-link p a:hover{
    font-size: 33px;
    letter-spacing: 2px;
    transition: 0.2s;
}

.fadein{
    opacity: 0;
    -moz-transition: opacity 2s;
    -webkit-transition: opacity 2s;
    -o-transition: opacity 2s;
    transition: opacity 2s;
}

body.loaded .fadein{
    opacity: 1;
}

.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 25px;
}
.nav-links ul li #navigation::after{
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    display: block;
    margin: auto;
    transition: 0.2s;
}
.nav-links ul li #navigation:hover::after{
    width: 80%;
    transition: 0.2s;
}

#resume {
    border: 2px solid rgb(199, 199, 199);
    border-radius: 15px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 9px;
    padding-right: 9px;
    transition: 0.2s;
}

#resume:hover {
    background-color: rgba(255, 255, 255, 0.2)
}

nav .fa{
    display: none;
}

nav #resume .material-icons {
    display: inline-block;
    font-size: 20px;
    vertical-align: middle;
}

.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1{
    font-size: 64px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 20px;
    color: #fff;
}

.discovermore-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    margin-top: 10%;
    padding: 24px 60px;
    font-size: 18px;
    background: transparent;
    position: relative;
    cursor: pointer;
    transition: 0.2s;
}
.discovermore-btn:hover{
    background-color: rgba(143, 143, 143, 0.2);
    transition: 0.2s;
}

.arrows {
	width: 60px;
	height: 72px;
	position: absolute;
	left: 50%;
	margin-left: -30px;
	bottom: 20px;
}

.arrows path {
	stroke: #ffffff;
	fill: transparent;
	stroke-width: 2px;	
	animation: arrow 5s infinite;
	-webkit-animation: arrow 5s infinite; 
}

@keyframes arrow
{
    0% {opacity:0}
    40% {opacity:1}
    80% {opacity:0}
    100% {opacity:0}
}

@-webkit-keyframes arrow /*Safari and Chrome*/
{
    0% {opacity:0}
    40% {opacity:1}
    80% {opacity:0}
    100% {opacity:0}
}

.arrows path.a1 {
	animation-delay:-1s;
	-webkit-animation-delay:-1s; /* Safari and Chrome */
}

.arrows path.a2 {
	animation-delay:-0.5s;
	-webkit-animation-delay:-0.5s; /* Safari and Chrome */
}

.reveal {
    position: relative;
    opacity: 0;
}

.reveal.active {
    opacity: 1;
}
.active.fade-bottom {
    animation: fade-bottom 1s ease-in;
}
.active.fade-left {
    animation: fade-left 1s ease-in;
}
.active.fade-right {
    animation: fade-right 1s ease-in;
}
@keyframes fade-bottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fade-left {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-right {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.Info{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #111111;
}

.About{
    min-height: 100vh;
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #111111;
}

.About p{
    text-align: right;
    font-size: 30px;
    margin-left: 15%;
    margin-right: 15%;
    line-height: 100%;
}

h1{
    color: #fff;
    font-size: 36px;
    font-weight: 2000
}
h2{
    color: #fff;
    font-size: 30px;
    font-weight: 600;
}
p{
    color: #fff;
    font-size: 20px;
    font-weight: 10;
    line-height: 22px;
    padding: 10px;
}


.typewriter h1 {
    color: #fff;
    font-family: monospace;
    overflow: hidden;
    border-right: .15em solid white;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation: 
        typing 5s steps(30, end),
        blink-caret .5s step-end infinite;
}
  
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: white }
}


.footer{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #111111;
    color: white;
}
.footer h1{
    font-size: 36px;
    font-weight: 600;
}
.footer p{
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.footer-row{
    margin-top: 0%;
    width: 50%;
    padding-left: 25%;
    display: flex;
    justify-content: space-around;
}
.footer-copyright{
    width: 100%;
    margin: auto;
    text-align: center;
    background-color: #111111;
    bottom: 0px;
}
.footer-copyright p{
    font-size: 14px;
    font-weight: 100;
    color:rgb(170, 170, 170);
}

.hrbr {
    background-color: #111111;
}

hr.fancy { 
    height: 1px; 
    border-style: solid; 
    border-color: white; 
    border-width: 1px 0 0 0;
    width: 75%;
    margin-top: -30px;
    margin-left: 12.5%;
} 

.projects{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: white;
}
.projects-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    margin-left: 20px;
}
.projects-col img{
    width: 100%;
    border-radius: 10px;
    border: 2px solid rgb(0, 0, 0);
    transition: 0.2s;
}
.projects-col img:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.7);
}
.projects-col h3{
    margin-top: 16px;
    margin-bottom: 13px;
    text-align: left;
}
.projects-col p{
    padding: 0px;
    text-align: left;
}
.row{
    margin-top: 0%;
    width: 70%;
    padding-left: 15%;
    display: flex;
    justify-content: space-around;
}

.lucas-flex-row {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-around;
    /* overflow: hidden; */
}

.lucas-flex-row > .fadein {
    width: 50%
}

.lucas-flex-row img {
    width: 30%;
}

.lucas-flex-row h1 {
    width: 100%;
    height: 100%;
    color: rgb(70, 70, 70);
    font-size: 30px;
    text-align: center;
}

.lucas-flex-row p {
    width: 100%;
    color: rgb(128, 128, 128);
    font-weight: 500;
}

#zoom-color {
    transition: transform .5s, filter 0.5s ease-in-out;
    filter: grayscale(0%);
}
  
#zoom-color:hover {
    filter: grayscale(100%);
    transform: scale(1.05);
}

#lucas-image {
    width: 15%;
    box-shadow: 0px 10px white;
}

.slide-right h1 {
    font-weight: 550;
    animation: 1.5s slide-right 0s forwards;
    transform:translateX(-100%);
}

.slide-right p {
    animation: 2.0s slide-right 0s forwards;
    transform:translateX(-100%);
}

@keyframes slide-right {
    to {
        transform:translateX(0);
    }
}

.mapsection {
    background-color: white;
    margin-top: 1vw;
    margin-bottom: 1vw;
    text-align: left;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-around;
}

.mapsection ul li {
    list-style: none;
    padding: 1vw;
}

.fa-compass {
    vertical-align: middle;
    margin-top: -6px;
}

.fa-envelope {
    vertical-align: middle;
    margin-top: -7px;
  }

.fa-github {
    vertical-align: middle;
    margin-top: -2px;
}

.fa-linkedin-square {
    vertical-align: middle;
    margin-top: -6px;
}

#wrapper {
    width: 28vw;
    height: 28vw;
    overflow: hidden;
    border-radius: 5px;
}

#image {
    background-image: url(Images/mapleiden.png);
    background-size: 28vw 28vw;
    background-repeat: no-repeat;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: all 1s ease;
    left: 0;
    top: 0;
    transform-origin: 32% 56%;
    -webkit-transform-origin: 32% 56%;
}

#wrapper:hover #image {
    transform: scale(3);
    -webkit-transform: scale(3);
}

#p-contact {
    color: black;
    font-size: 20px;
    font-weight: 10;
    line-height: 22px;
    padding: 10px;
    text-decoration: none;
}
#p-contact a {
    color: black;
}

@media(max-width: 800px){
    html, body {
        overflow-x: hidden;
    }
    .name-link p a{
        font-size: 20px;
    }
    .name-link p a:hover{
        font-size: 23px;
    }
    .text-box h1{
        font-size: 35px;
    }
    /* .nav-links ul li{
        display: block;
    } */
    .discovermore-btn{
        padding: 12px 30px;
    }
    .nav-links{
        position: absolute;
        background:#111111;
        height: 100vh;
        width: 150px;
        top: 0;
        right: -150px;
        text-align: center;
        z-index: 2;
        transition: 1s;
    }
    .nav-links .fa{
        text-align: left;
    }

    .nav-links ul{
        padding: 15px;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    nav #resume .material-icons {
        display: none;
    }

    .row{
        flex-direction: column;
    }

    .LucasImage {
        padding-top: 2.5%;
        padding-bottom: 40.5%;
        flex-direction: column;
    }
        
    .LucasImage h1 {
        font-size: 20px;
        margin-left: 20%;
    }

    .mapsection {
        flex-direction: column;
    }

    #wrapper {
        width: 50vw;
        height: 50vw;
    }

    #image {
        background-size: 50vw 50vw;
    }

    .lucas-flex-row {
        flex-direction: column;
    }

    .lucas-flex-row img{
        width: 50%;
        margin-bottom: 20px;
    }

    .lucas-flex-row h1{
        margin-top: 10px;
        margin-bottom: 0px;
        font-size: 25px;
        font-weight: 500;
    }
    .lucas-flex-row > .fadein {
        width: 90%
    }
}
