* {
    margin: 0;
    padding: 0;
  /* font-family: Verdana, Geneva, Tahoma, sans-serif; */
}
.banner {
    width: 100%;
    height: 55vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url(./background1.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.header, parallax{
    font-size: 60px;
    color: beige;
    font-family: Georgia, "Times New Roman", Times, serif;
    text-align: center;
    transform: translateY(25vh);
}
.info{
    color: beige;
    font-family: Georgia, "Times New Roman", Times, serif;
    text-align: center;
}
.header:hover {
    color: coral;
    transition-duration: 3s;
}
.sticky{
    position: fixed;
    top:0;
    width: 100%;
}
.menu{
    background-color: coral;
    text-align: center;
}
.menu-ul{
    margin: 0;
    padding: 0;
    display: inline;
}
.menu-ul li{
    font-size: 20px;
    list-style: none;
    display: inline-block;
    padding: 15px 15px 16px 15px;
}
.a-menu, .a-links{
    text-decoration: none;
    color: beige;
}
.menu-ul li:hover{
    background: beige;
    color: coral;
    transform: scale(1,1);
}
.search-box{
    border: 1px soild black;
    border-radius: 50px;
    background: beige;
    width: max-content;
    display: inline-block;
    margin: 8px;
}
.search-box:hover{
    box-shadow: white;
    border: 1px solid white;
}
.search-input{
    width: 250px;
    border: none;
    font-size: 16px;
    outline: none;
    background: transparent;
    margin: 15px 0 0 10px;
}
i{
    font-size: 20px;
    margin: 0 10px 0 0;
}
button{
    background: transparent;
    border: none;
    outline: none;
}
.container{
    margin: 50px 50px 50px 5%;
    width: 90%;
    text-align: center;
}
.categories, .items{
    width: max-content;
    margin: 25px;
    border: 1px solid black;
    border-radius: 0 0 50px 50px;
    display: inline-block;
}
.categories:hover, .items:hover{
    box-shadow: 0 0 10px 3px #184d47;
}
.item-image{
    height: 200px;
    width: 200px;
    border-radius: 0 0 50px 50px;
    padding: 10px;
}
.image-title{
    text-align: center;
    padding: 10px;
    font-weight: bold;
}
a{
    text-decoration: none;
}
.title{
    padding: 50px;
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 10px;
    color: beige;
    background: coral;
}
.images{
    display: inline-block;
}
.item-image-size{
    height: 200px;
    width: 300px;
    padding: 5px;
}
.description{
    margin: 20px;
    min-height: 100px;
}
.item-select{
    margin: 10px 0 0 0;
}
.buynow-btn{
    border: 1px solid black;
    background: black;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-top: 10px;
    color: beige;
}
.buynow-btn:hover{
    border: 1px solid #184d47;
    box-shadow: 0 0 10px 5px #184d47 inset;
}
.parallax{
    background-image: url(./footer.jpeg);
    background-size: cover;
}
.footer{
    background: rgba(0, 0, 0, 0.75);
    text-align: center;
    padding: 20px;
}
.quick-links{
    color: beige;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    min-width: 30%;
}
.quick-links ul{
    padding: 0;
}
.quick-links li{
    list-style: none;
    padding: 10px;
    font-weight: 300;
}
.a-links:hover{
    color: coral;
}
.copyrights{
    font-size: 16px;
    font-family: verdana, arial, helvetica, sans-serif;
    text-align: center;
    margin: 15px;
}

