@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700');

html, body {
    height: 100%;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}
/* Navigation Bar */
.navbar-nav li {
    padding-right: 20px;
}

.nav-link {
    font-size: 1.1em;
}

.nav-logo {
    width: 70%;
    height: auto;
}

/* Home */

#profile-pic {
    max-width: 30%;
    height: auto;
}

.social a {
    font-size: 8vw;
    padding: 10px;
}

.fa-caret-square-down {
    color: #ffffff;
    font-size: 3em;
    margin-top: 5%;
}

.social .fa-facebook, 
.social .fa-instagram,
.social .fa-linkedin,
.social .fa-wordpress,
.social .fa-github, 
.social .fa-file {
    color: #ffffff;
    opacity: 0.6;
}

.social .fa-facebook:hover,
.social .fa-wordpress:hover, 
.social .fa-github:hover, 
.social .fa-instagram:hover,
.social .fa-linkedin:hover, 
.social .fa-file:hover {
  color: #ffffff;
  opacity: 1;
}

.padding {
    padding: 0px 30px;
}

.home {
    padding-top: 3%;
}

.home h3 {
    font-weight: 500;
    text-shadow: 1px 1px 10px #000;
    color: white;
}

.home p {
    font-weight: 500;
    text-shadow: 1px 1px 10px #000;
    color: white;
}



.background-home {
    background-image: url(../img/home/background-original.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-origin: initial;
    background-clip: initial;
    background-position: center center;
    height: 100vh;
    background-repeat: no-repeat;
} 

/* Projects */

.projects h1 {
    font-weight: 400;
}

.projects {
    background-color: #f5f5f5;
}

/* Contact */
.contacts {
    width: 75%;
    padding: 80px 0px 100px 0px;
}

.padding-contact {
    padding: 1%;
}

.hr-contacts {
    border-top: 1px solid #b4b4b4;
}

/* Footer */
footer a {
    font-size: 4em;
    padding: 10px;
}
footer .fa-instagram,
footer .fa-linkedin,
footer .fa-facebook,
footer .fa-wordpress,
footer .fa-github,
footer .fa-file {
    color: white;
    box-shadow: #ffffff;
    opacity: 0.5;
}

footer .fa-instagram:hover,
footer .fa-linkedin:hover,
footer .fa-facebook:hover,
footer .fa-wordpress:hover,
footer .fa-github:hover,
footer .fa-file:hover {
    opacity: 1;
}

footer {
    background-color: #3f3f3f;
    color: #d5d5d5;
    padding: 40px 0px;
}

footer p {
    display: inline-block;
}

/* To top Arrow */
.no-display {
    display: none;
}

.block-display {
    display: none;
}

.up-arrow {
    font-size: 3em;
    bottom: 5%;
    right: 5%;
    position: fixed;
}

.fa-caret-square-up {
    color: #000000;
    opacity: 0.5;
    box-shadow: 0 0 0 0 #000000;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.fa-caret-square-up:hover {
    opacity: 1;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

/* Responsiveness */
@media (min-width: 576px) {

}

@media (min-width: 768px) {
    #profile-pic {
        max-width: 50%;
        height: auto;
    }

    .social a {
        font-size: 4.5em;
    }
}

@media (min-width: 992px) {
    .fa-caret-square-down {
        color: #ffffff;
        font-size: 4.5em;
    }

    .hr-contacts {
        width: 660px;
    }

    .nav-logo {
        width: 100%;
        height: auto;
    }
}

@media (min-width: 1200px) {
    .slide-effect {
        box-shadow: 0 0 0 0 #000000;
        -webkit-transform: perspective(1px) translateZ(0);
        transform: perspective(1px) translateZ(0);
        -webkit-transition-duration: 0.4s;
        transition-duration: 0.4s;
        -webkit-transition-property: transform;
        transition-property: transform;
    }

    .slide-effect:hover {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    .fa-caret-square-down {
        margin-top: 7%;
    }

    .img-grav {
        content: url('../img/projects/gravity.gif');
    }

    .img-rotmg {
        content: url('../img/projects/rotmg.gif');
    }

    .block-display {
        display: block;
    }
}


/*
Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
*/

