
@import url('https://fonts.googleapis.com/css2?family=Limelight&family=Oswald:wght@200..700&display=swap');
body {
  cursor: url("/images/Asset\ 111-100.png") 16 16, auto;
}
*{
    padding: 0;
    margin: 0;
}
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}
main{
    flex: 1;
}
.top-ad-sec{
    padding: 20px;
    text-align: center;
    background-color: black;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}
.top-ad-sec a{
    color: white;
    font-size: large;
}
.header{
    display: flex;
    padding: 10px;
    justify-content: space-evenly;
    align-items: center;
}
.logo img{
    width: 150px;
}
.ad-sec{
   padding: 20px; 
   display: flex;
   justify-content: center;
}
.ad-sec img{
    display: block;
    width:350px;
}
.filters{
   padding: 20px;
   display: flex;
   justify-content: space-between;
}
.product-sec{
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
}
.product{
    width: 160px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Oswald", sans-serif;cursor: pointer;
}
.product-photo img{
    display: block;
    height: 160px;
    width: 150px ;
    object-fit: cover;
}
.product-title{
    display: block;
    width: 140px;
    font-size:15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.price{
    display:flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.new-price{
    color: red;
    font-size: 15px;
}
.old-price{
    color: gray;
    font-size: 15px;
    text-decoration: line-through;
}
#new{
    display: block;
    width: fit-content;
    padding: 2px 8px;
    background-color: black;
    color:white;
    font-size: smaller;
    text-transform: uppercase;
}
footer{
    
    width:100%; 
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0px;
    height: 100px;
    background-color: black;
}
footer a{
    color: white;
    margin: 0px 5px;
    text-decoration: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 10px;
}
footer img{
    margin-top: 20px;
    width: 100px;
}
footer p{
    color: white;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 10px;  
}