*{
    margin: 0;
    padding: 0;
}
.container{
    width: 100%;
    margin: 0 auto;
}
.box1{
   width: 300px;
   height: 40px;
    background-color: rgba(75, 114, 255, 0.916);
    border-bottom-left-radius: 30px;
    position:absolute;
    top: 0px;
    right: 0px;
}
.box1 > ul > li{
    list-style-type: none;
    display:inline-block;
}
.box1 > ul > li >a{
    color: rgb(255, 255, 255);
    text-align: center;
    text-decoration: none;
    font-variant: small-caps;
    font-size: larger;
    margin: 3px 5px;
    line-height: 30px;
}
.box1 > ul > li >a:hover{
    color:lightgrey;
    text-decoration: none;
}
/*header*/
header{
    background-image: url('https://png.pngtree.com/thumb_back/fh260/back_our/20190619/ourmid/pngtree-blue-cartoon-fashion-women-s-shoes-shop-home-background-image_132650.jpg');
    width: 100%;
    height: 200px;
    background-size: 100% 80%;
    z-index: 1;
}
header>h1{
    margin: 0;
    position: absolute;
    top: 140px;
    left: 40px;
    color: rgb(7, 45, 90);
    font-weight: 30px;
    font-variant: small-caps;
    text-shadow: 0 0 10px rgb(44, 44, 255);
}
.login{
    float: right;
    color: blue;
    list-style: none;
    position: absolute;
    top: 5px;
    left: 70%;
}
.login > a{
    text-decoration: none;
    color: blue;
}
.container > header > .logo{
    position: absolute;
    top:0px;
    left:5px;
}
/*nav*/
nav{
    width: 100%;
    line-height: 40px;
    text-align: center;
}
#menu li{
    color: #f1f1f1;
  display: inline-block;
  width: 120px;
  height: 40px;
  line-height: 40px;
  position:relative;
}
#menu > ul > li > a{
    text-decoration: none;
  color: #f1f1f1;
  display: block;
  font-size: larger;
}
#menu > ul{
    background: rgb(0, 102, 255);
  list-style-type: none;
  text-align: center;
}
#menu > ul> li> a:hover{
    background: #F1F1F1;
  color: #0C0A0A;
}
#menu ul li > .sub-menu {
    display: none;
    position: absolute;
}
.sub-menu {
    display: none;
    position: absolute;
    z-index: 2;
}
#menu ul li:hover .sub-menu {
    display: block;
  }
#menu ul li ul li{
    background-color: blue;
  }
#menu ul li ul li a{
    text-decoration: none;
    color:white;

}
#menu ul li ul li:hover{
    background-color: rgb(57, 118, 240);
}
/*article*/
article{
    width: 100%;
    height: auto;
    float: left;
}
/*aside*/
.container > aside{
    width: 29%;
    height: 600px;
    float: right;
    border-left: 1px dotted rgb(216, 108, 14);
}
.vmenu{
    padding: 0;
    margin: 5px;
    list-style: none;
    border-radius: 3px;
    box-shadow: 0px 0px 2px grey;
}
.vmenu > li> a{
    background-image: url(https://i.pinimg.com/originals/57/61/5b/57615b8c0092a66c1d4058b1692955cc.gif);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: left;
    display: block;
    border-bottom: 1px dotted rgb(95, 148, 227);
    font-variant: small-caps;
    font-size: larger;
    text-decoration: none;
    padding: 8px 5px 8px 30px;
    color: rgb(6, 52, 88);
}
.vmenu >li > a:hover{
    background-image: url(https://i.gifer.com/4foo.gif);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: left;
    border-bottom: 1px dotted white;
    background-color: rgb(45, 103, 173);
    color: white;
    font-weight: bold;
}
/*footer*/
footer{
    width: 100%;
    height: 300px;
    background-color: rgb(36, 36, 36);
    clear: both;
    overflow:hidden;
}
.col-30{
    width: 30%;
    height: 200px;
    float:left;
    color: rgb(255, 255, 255);
    text-align:center;
    margin: 30px 20px;
}
.col-30 > ul{
    text-align: center;
    list-style-type: none;
}
.col-30 ul li span{
    color:grey;
    line-height: 25px;
}
.col-30 > ul > li > a{
    text-decoration: none;
    color:grey;
    line-height: 25px;
    font-size: large;
    font-variant: inherit;
    padding-top: 10px;
}
.col-30 > .icon > li{
    display:inline-block;
    margin: 15px;
}
.col-30 > ul > li > a:hover{
    color: white;
}