body {
    margin: 0px;
    font-family: Helvetica Neue;
}

header {
    display: flex;
    background-color: #EDEBEC;
    justify-content: space-around;
}

#navBar {
    display: flex;
    list-style-type: none;
    padding: 20px;
}

li {
    padding: 10px;
}

li a {
    text-decoration: none;
    color: #7A6667;
    margin: 20px;
}

li a:hover {
    color: #C8C10E;
}

li a.active {
    color: #C43762;
}

#logo {
    margin: 35px;
}

#bigImage {
    width: 100%;
    display: block;
}

#bigImgeDiv {
    position: relative;
}

#circleDiv {
    position: absolute;
    text-align: center;
    background-image: url("images/05.png");
    background-size: cover;
    right: 20%;
    bottom: 15%;
    height: 150px;
    width: 150px;
    color: white;
    border-radius: 50%;
}

#circleDiv p {
    margin-top: 50px;
}

#newProduct {
    background-color: #E9E7E8;
    margin: 0%;
    display: flex;
    justify-content: space-around;
}

#newProductText {
    margin: 50px;
}

#icons {
    background-color: #C8C10E;
    display: flex;
    justify-content: space-evenly;
}

.icon {
    margin: 50px;
    color: white;
}

.red {
    color: #E32C65
}

.grey {
    color: #7A6667;
}

#footer {
    background-color: #CB3362;
}

#footerContent {
    padding-top: 42px;
    padding-bottom: 120px;
}

.footerIcons {
    display: flex;
    justify-content: center;
}

.footerSingleIcon {
    margin: 15px
}

#copyRight {
    text-align: center;
    color: white;
    font-family: sans-serif;
    font-size: 12px;
}