* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

#logo-div {
    width: 100%;
    min-height: 50px;
    background-color: black;
    padding-left: 2%;
}

#nav-div {
    width: 100%;
    min-height: 30px;
    background-color: black;
    text-align: center;
    margin-bottom: 10px;
}

#nav-div li {
    list-style: none;
    display: inline;
}

#nav-div li a {
    text-decoration: none;
    color: white;
    padding-right: 2%;
    padding-left: 4%;
    font-family: Arial, Helvetica, sans-serif;
}

#nav-div li a:hover {
    color: red;
}

#header-banner-div {
    width: 100%;
    min-height: 500px;
    background-image: url(img/Bold_Fashion.png);
    background-repeat: no-repeat;
    background-size: cover;
    line-height: 100px;
    margin-bottom: 10px;
}

#main-div {
    width: 100%;
    margin-bottom: 10px;
}

#sidebar-div {
    width: 20%;
    min-height: 400px;
    background-color: black;
    float: left;
    text-align: center;
}

#sidebar-div p {
    color: white;
    padding-top: 20%;
    padding-left: 20%;
    padding-right: 20%;
    font-family:cursive;
}

#bodyarea-div {
    width: 75%;
    min-height: 400px;
    float: right;
    text-align: center;
    background-image: url(img/Banner3.png);
    background-repeat: no-repeat;
    background-size: cover;
}

#body-area p {

}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

#footer-div {
    width: 100%;
    min-height: 50px;
    background-color: black;
    text-align: center;
    lin
}

#wrapper-div {
    width: 100%;
    margin: auto;
}