#container {
    position: relative;
    height: 900px;
    width: 1600px;
    margin-right: auto;
    margin-left: auto;
    background-color: red;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;

}

.image {
    background: #34495e;
    border: 1px solid #34495e;
    width: 200px;
    height: 200px;
}

body {
    background-color: black;
}

/*resposive code*/

* {
    margin: 0;
    padding: 0;
}

.wrapper {
    width: 100%;
}

.img-banner {
    display: none;
}

.img-info {
    padding-top: 30px;
    width: 100%;
}

.img-info h2 {
    padding: 30px 30px 20px;
    font-family: arial;
    font-size: 50px;
    color: #111;
    line-height: 44px;
}

.img-info p {
    padding: 0px 30px 20px;
    font-family: arial;
    font-size: 16px;
    color: #111;
    line-height: 24px;
}

.img-me {
    width: 100%
}

@media only screen and (min-width: 450px) {
    .img-banner {
        display: block;
        width: 100%;
        padding-bottom: 30px;

    }

    .wrapper {
        width: 600px;
        margin: 0 auto;
    }

    .img-info h2 {
        padding: 20px 0px 0px;
    }

    .img-info p {
        padding: 20px 0px 0px;
    }

    .img-me {
        padding-top: 30px;
        padding-bottom: 60px;
        width: 100%
    }
}

@media only screen and (min-width: 1000px) {
    .wrapper {
        width: 1000px;
    }

    .img-info {
        width: 50%;
        float: right;
    }

    .img-info h2 {
        padding: 20px 0px 0px 30px;
    }

    .img-info p {
        padding: 20px 0px 0px 30px;
    }

    .img-me {
        padding-top: 1px;
        width: 27%;
        float: right;

    }



}

/*nav bar code */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    color: white;
}

.brand-title {
    font-size: 1.5rem;
    margin: .5rem;
}

.navbar-links ul {
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-links li {
    list-style: none;
}

.navbar-links li a {
    text-decoration: none;
    color: white;
    padding: 1rem;
    display: block;
}

.navbar-links li:hover {
    background-color: darkseagreen;
}

.toggle-button {
    position: absolute;
    top: .75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}

@media (max-width: 600px) .brand-title {
    font-size: 1.5rem;
    margin: .5rem;
}

.navbar-links ul {
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-links li {
    list-style: none;
}

.navbar-links li a {
    text-decoration: none;
    color: white;
    padding: .4rem;
    display: block;
}

.toggle-button {
    position: absolute;
    top: .75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}

/*project images*/

@media only screen and (min-width: 450px) {
    .image-projects {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        padding: 140px;
    }

    .container img:hover {
        cursor: pointer;
        opacity: 0.5;
        transition: 0.5s;
    }

}

/*Collage*/

@media only screen and (min-width: 1000px) {
    .collage-container {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
}

@media only screen and (min-width: 1000px) {
    .text-butterfly {
        font-family: arial;
        font-size: 15vw;
        color: #111;
        text-align: center;
        padding-top: 50px;

    }
}

/*Self-Portrait*/

@media only screen and (min-width: 450px) {
    .self-portrait {
        margin: 0 auto;
        display: block;
        width: 1000px;
        padding-top: 200px;
    }