* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    width: 100%;
    background-color: white;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 670;
    text-decoration: none;
    list-style: none;
}

body {
    display: flex;
    justify-content: center;
}

header {
     position: fixed;
     top: 0;
     width: 100%;
     height: 80px;
     display: flex;
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
    z-index: 4000;
 }

ul, nav, .search-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

ul {
     width: 22%;
 }

#pinterest-icon {
    width: 24px;
    margin-left: 20px;
}

li {
    margin: 5px;
}

li span {
    color: white;
    padding: 15px;
    border-radius: 40px;
    background-color: black;
    margin: 5px;
}

li i {
   margin-left: -5px;
}


nav {
    width: 40%;
}

.search-bar {
    width: 850px;
    height: 100%;
    position: relative;
    margin: 0;
}

.finder {
    width: 100%;
    height: 60%;
    position: relative;
    padding-left: 40px;
    font-weight: 200;
    background-color: #e9e9e9;
    outline: none;
    border: none;
    border-radius: 100px;
}

.search-bar i {
    background-color: transparent;
    font-size: 15px;
    font-weight: bold;
    color: #414141;
    position: absolute;
    z-index: 100;
    left: 16px;
}

nav {
    width: 170px;
}

#notifications i, #message i {
    font-size: 24px;
    height: 35px;
    color: #5f5f5f;
}

#profile-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

#profile-img img {
    border-radius: 100px;
    height: 25px;
    width: 25px;
    margin: -5px 5px 5px 0;
}

#profile-img i{
    margin-top: -10px;
    color: #5f5f5f;
}


#content {
    width: 92%;
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
section {
    width: 235px;
}

.card-image {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-image img {
    border-radius: 25px;
    margin-bottom: 40px;
}

.card-image:hover img{
    filter: brightness(50%);
    -webkit-filter: brightness(50%);
    transition: filter -1s ease-in-out;
}

.up {
    position: absolute;
    display: none;
}

.card-image:hover .up{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.up {
    width: 235px;
    height: 15%;
    z-index: 3000;
    background-color: transparent;
}

.up p {
    background-color: transparent;
    color: white;
    width: 25%;
    margin-left: 20px;
}

.up i {
    margin-top: 5px;
    background-color: transparent;
    width: 5%;
    color: white;
    margin-left: -30px;
}

.up button {
    width: 85px;
    height: 75%;
    border: none;
    color: white;
    font-size: 13px;
    border-radius: 20px;
    background-color: #e60023;
    margin-right: 20px;
}

.down {
    position: absolute;
    display: none;
}

.card-image:hover .down {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.down {
    z-index: 3000;
    height: 15%;
    width: 235px;
    background-color: transparent;
    bottom: 50px;
}

.down i {
    background-color: rgba(231, 229, 229, .80);
    width: 15%;
    font-size: 16px;
    color: black;
    margin: 10px;
    padding: 10px;
    border-radius: 50px;
}


@media screen and (max-width: 1150px){
    .none {
        display: none;
    }

    #pinterest-icon {
        display: flex;
    }
    li span {
        padding: 0;
        background-color: inherit;
        color: inherit;
    }

    .search-bar {
        width: 50%;
    }

    ul {
        z-index: 1000;
        margin-right: 10px;
    }

    li i {
        margin: -15px;
    }

    #content {
        justify-content: center;
    }

    section {
        margin: 0 10px 0 10px;
    }
}