/* Font */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');


/* Body */
body {
    font-family: 'Nunito Sans', sans-serif;
}

p {
    font-family: 'Roboto', sans-serif;
}

section {
    padding-top: 4rem;
}


/* Navbar Header */
.navbar {
    background-color: #131313;
}

.navbar a {
    color: white;
    transition: .3s;
}

.navbar a:hover {
    color: gold;
}

.navbar-dark:hover {
    color: gold;
}


.nav-link {
    margin-right: 18px;
}


/* Hero */
.heroo {
    background-image: url("img/a_natap1.jpg");
    background-size: cover;
    height: 900px;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: -91px;
}

.awalan {
    margin-top: 100px;
}

.awalan h1 {
    font-size: 62px;
}

.awalan h3 {
    font-size: 36px;
}

.awalan p {
    color: gold;
    width: 60%;
    font-size: 18px;
}

.btnletsee a {
    color: white;
    background-color: #131313;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 4px;
    transition: .3s;
}

.btnletsee a:hover {
    background-color: gold;
    color: black;
}


/* About */




/* Education and Experience */
.edex {
    padding-top: 14vh;
    padding-bottom: 6vh;
    background-color: #f1f1f1;
}


/* Projects */


#projects h1 {
    font-size: 42px;
}

.card-body a {
    text-decoration: none;
    background-color: #131313;
    color: white;
}

.card-body a:hover {
    background-color: gold;
    color: black;
}

.morepro a {
    background-color: #131313;
    color: white;
}

.morepro a:hover {
    background-color: gold;
    color: black;
}

/* Tools */
.tools {
    background-color: #f1f1f1;
    padding-top: 14vh;
    padding-bottom: 14vh;
}



/* Contact */
.talk {
    color: black;
}

.talk h1 {
    font-size: 62px;
}

.talk .sos {
    fill: black;
    margin-bottom: 14px;
    transition: .3s;
}

.talk .sos:hover {
    fill: gold;
}

.talk .cia {
    margin-right: 30px;
}

.conta a {
    color: black;
    text-decoration: none;
    font-size: 21px;
}

.conta a:hover {
    color: gold;
}


/* Floating Button */
.act-btn {
    background: #131313;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 35px;
    text-align: center;
    color: white;
    font-size: 30px;
    font-weight: bold;
    border-radius: 4px;
    /* -webkit-border-radius: 50%; */
    text-decoration: none;
    transition: ease all 0.3s;
    position: fixed;
    right: 17px;
    bottom: 17px;
    opacity: 0;
    pointer-events: none;
}

.act-btn:hover {
    background: gold;
    color: black;
}

.act-btn.active {

    pointer-events: auto;
    opacity: 1;
}


/* Footer */
.footer {
    background-color: #131313;
    padding: 12px;
}

.footer p {
    margin: auto;
    text-align: center;
}


/* For Mobile */
@media screen and (max-width: 575.98px) {

    /* Hero */
    .heroo {
        background-position: center;
    }

    .awalan {
        width: 100%;
        margin-left: 45px;
        margin-top: 120px;
    }

    .awalan h3 {
        font-size: 30px;
        width: 68%;
    }

    .awalan p {
        width: 90%;
    }


    /* Projects */
    .morepro {
        position: relative;
        margin-left: 5vh;
    }

    .morepro a {
        margin: auto;
        display: inline;
    }

    /* Contact */
    .talk h1 {
        font-size: 42px;
    }

    .talk h2 {
        font-size: 28px;
    }
}