/* 1.START Style the header vzipmall - Online Shopping Mall*/
/* 2.START Style the Link and Visited Link*/
/* 3.START Style the Body Text and all Heading from H1 to H6*/
/* 4.START Tag for Sticky*/ 
/* 5.START Tag for Button to Scroll Top*/
/* 6.START Policy Footer Style*/


 /* 1.START Style the header vzipmall - Online Shopping Mall*/
.header {
    background-color: #0000ff;
   
    border:8px solid crimson;
    border-radius:15px;
    overflow:hidden;
    margin: 0px 0px 0px 0px 0px;
    font-family: sans-serif, verdana, Arial, Helvetica;
}    
 /* END Style the header vzipmall - Online Shopping Mall*/
 
 /* 2.START Style the Link and Visited Link*/
 
 a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}
 /* END Style the Link and Visited Link*/
 
 /* 3.START Style the Body Text and all Heading from H1 to H6*/

	body,h1,h2,h3,h4,h5,h6 {font-family: "Raleway", sans-serif}

 /* END Style the Body Text and all Heading from H1 to H6*/
 
/* 4.START Tag for Sticky*/ 
 div.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: ;
  padding: 00px;
  font-size: 0px;
  border-radius: 50px;
}
/* END Tag for Sticky*/ 

/* 5.START Tag for Button to Scroll Top*/ 
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 10px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 40px;
}

#myBtn:hover {
  background-color: #555;
}


/* END Tag for Button to Scroll Top*/ 

/* 6.START Policy Footer Style*/
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: purple;
    color: white;
    text-align: center;
 } 
 /* END Policy Footer Style*/