@import "variables.scss";

body{
    background: $body-color;
}

img {
    border:4px solid $img-border-color;
}
.cars{
    width:$box-width;
    margin: 0 auto;
    top: 0;
    left: 0;
    right: 0;
    position: relative;
    .img{
        float:left;
        margin: 10px;
    }
    img{
         width: 200px;
         height: 120px;
    }
}
.header{
    background:$header-background;
    .menus li{
        list-style:none;
        padding:10px;
        display:inline-block;
    }
    .menus li a{
        text-decoration:none;
        font-size:15px;
        font-weight:500;
        &:hover{
            color:$menu-hover-color;
        }
        &:active{
            background:$menu-hover-color;
        }
        &:visited{
            background:$menu-hover-color;
        }
    }
    .active{
        background:$menu-hover-color;
        color:#333;
    }
}
.container{
    margin: 0 auto;
    padding: 0;
    width: 70%;
    top: 0;
    right: 0;
    left: 0;
    position: relative;
}
.content{
    border-radius: $border-radius;
    -moz-border-radius:$border-radius;
    -webkit-border-radius:  $border-radius;
    border: 4px solid #871087;
    display:inline-block;
    min-height:200px;
    width:100%;
}