/* Body */

body {
    margin: 0;
    padding: 0;
    background-image: url('images/background.jpeg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
}

body p {
    font-size: 20px;
}

/* End of Body */


/* Header */

header {
    height: 10em;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #A0B968;
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 20px 0px;
}

.navbar li {
    display: inline;
    width: max-content;
    background-color: #36502f;
    align-items: center;
    font-size: 26px;
    padding: 0.5em;
}

.navbar a {
    padding: 0.5em;
}

.navbar li:hover {
    background-color: #1B270F;
}

nav {
    margin-right: 5%;
}

.navbar a {
    text-decoration: none;
    color: #A0B968;
}

#logo_icon {
    width: 200px;
    height: auto;
}

/* End of Header */


/* Main */

#index_div {
    position: relative;
    top: 400px;
    margin: auto;
    width: 80%;
    text-align: center;
    background-color: #1B270F;
    padding: 2em 3em;
    color: #A0B968;
}

.about_me {
    align-self: center;
}

.about_me #Bobirus {
    width: 600px;
    height: auto;
    float: left;
}

#about_Bobirus {
    float: left;
    width: 90%;
    position: relative;
    left: 10%;
    top: 250px;
}

#about_Bobirus p {
    float: left;
    width: 50%;
    margin-left: 3em;
    margin-top: 5em;
    background-color: #1B270F;
    color: #A0B968;
    text-align: center;
}

.img {
    width: 600px;
    height: 400px;
}

#portofolio_table {
    position: relative;
    margin: auto;
    top: 300px;
}

/* End of Main */


/* Footer */

footer {
    height: 7em;
    width: 100%;
    background-color: #3f5739;
    text-align: center;
    margin-right: 25px;
}

footer p {
    font-size: 15px;
}

#footer_index,
#footer_about {
    position: absolute;
    bottom: 0;
}

#footer_portofolio {
    position: relative;
    top: 410px;
}

/* End of Footer */

@media only screen and (max-width: 700px) {
    body {
        background-image: url('images/background-phone.jpeg');

    }

    /* Header */

    header {
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        align-items: center;
        z-index: 0;
    }

    .navbar li {
        display: block;
        width: 100%;
        align-items: center;
        text-align: center;
        margin: 0.3em;
    }

    /* End of Header */

    /* Main */

    #index_div {
        position: relative;
        top: 100px;
        margin: auto;
        width: 90%;
        padding: 1em;
    }

    .about_me #Bobirus {
        width: 95%;
        height: auto;
    }

    .about_me h1 {
        text-align: center;
        background-color: #1B270F;
        color: #A0B968;
        width: 50%;
    }

    #about_Bobirus {
        z-index: -1;
        position: relative;
        top: 25px;
    }

    #about_Bobirus p {
        width: 100%;
        position: absolute;
        top: 350px;
        left: 0;
        /* left: auto; */
    }

    .img {
        width: 600px;
        height: 400px;
    }

    #portofolio_table {
        z-index: -1;
        position: relative;
        margin: auto;
        top: 75px;
    }

    td {
        display: block;
    }

    /* End of Main */

    /* Footer */

    footer {
        height: 7em;
        width: 100%;
        text-align: center;
    }

    footer p {
        font-size: 15px;
    }

    #footer_portofolio {
        position: relative;
        top: 100px;
    }


    #footer_about {
        background-color: transparent;
        color: transparent;
    }

    /* End of Footer */

}