* {
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    text-align: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: white;
    min-height: 200vh;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.6s;
    background-color: rgb(255, 255, 255);
    z-index: 100000;
}
header.sticky {
    padding: 5px 100px;
    background: rgb(255, 255, 255);
}
header .logo {
    transition: 0.6s;
}
header ul {
    position: relative;
}
header ul li {
    position: relative;
}
header ul li a {
    position: relative;
    transition: 0.6s;
}
li {
    list-style: none;  
}
#logo a {
    text-decoration: none;
    color: black;
    transition: 0.6s;
}
#logo {
    font-size: 25px;
    font-weight: 1000;    
}
.categories a {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    color: black;
    text-decoration: none;
}
.categories {
    text-align: center;
    display: inline-block; 
    margin: 6px;
    word-spacing: 15px;
    position: relative;
    margin-top: 20px;
}
.categories ul {
    position: relative;
    left: 0;
    right: 0;
}
.categories li {
    display: inline-block;
}
.categories2 {
    word-spacing: 25px;
}
.categories2 ul li {
    margin-top: 15px;
}
.categories2 a {
    font-size: 14px;
    font-weight: 600;
}
.categories ul li {
    padding: 5px;
}
#home img {
    max-width: 100%;
    margin-top: 190px;
   
}
.categories ul li:hover {
    background-color: rgb(237, 237, 237);
}
header.sticky #logo a {
    display: none;
    transition: 00.6s;
}
header.sticky .categories2 ul li {
    margin-top: 2px;
}
header.sticky .categories ul li {
    padding: 2px;
}
header.sticky .categories {
    margin-top: 10px;
}








