/* base: */

* {
    margin: 0;
    box-sizing: border-box;
    font-family: Helvetica, sans-serif;
    color: #333;
    line-height: 1.6em;
}


body{
    background-color: #ded7d4;
    width: 80%;
    margin: 1.5rem auto 1.5rem auto;
}

h1, h2, h3, h4, h5, h6{
    font-weight: normal;
    margin-bottom: 1rem;
}

ul {
    margin-bottom: 1rem;
}

a {
    color: #e53;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.buynow {
    display: block;
    width: 10rem;
    border: 2px RGB(190, 160, 130) solid;
    background-color: RGBA(190, 160, 130, 0.7);
    border-radius: 7px;
    color: #fff;
    text-align:center;
    clear: both;
    transition: background-color 1s linear, border-color 1s linear;
}

.buynow:hover {
    text-decoration: none;
    background-color: RGBA(0, 128, 0, 0.7);
    border-color: green;
}


p {
    text-align: justify;
    margin-bottom: 1rem;
}

.product {
    background-color: #fff;
    padding: 1rem;
    margin: 1rem;
}

aside ul {
    list-style-type: none;
    margin-bottom: 1.5rem;

}

/* display new HTML5 elements as block level elements: */
header, main, nav, aside, article, footer, figure, figcaption {
    display: block;
    padding: 0;
}

figure {
    width: 30%;
}

figure > img {
    width: 100%;
    height: 100%;
}

figcaption {
    font-weight: bold;
    text-align: center;
}

.left {
    float: left;
}

.right {
    float: right;
}

main {
    float: left;
    width: 74%;
}

aside {
    float: right;
    width: 24%;
}

footer {
    clear: both;
    width: 100%;
}