/* body{
    background-color: black;
    color:white;
} */

body{
    color: black;
   
}


#nav{
    list-style-type: none;
    background-color: black;
    display: flex;
    justify-content: center;
    top:0;
    margin: 0;
    font-size: 25px;
    padding: 20px;
    position: fixed;
    width: 100%;
}

#nav li a{
    text-decoration: none;
    
    margin: 12px;
    color: white;
    /* border: 2px solid red; */
}

#nav li a:hover{
    color: white;
    background-color: black;
}

#currentpage{
    border-bottom: 2px solid white;
}


.offer{
    display: grid;
    grid-template-columns: 2fr 4fr;
}

.offerdesc{
    background-color: black;
    color: white;
    text-align: center;
    padding-top: 200px;
}

.offer img{
    width: 100%;
}

.offertitle{
    font-size: 50px;
}

.offerdesc p{
    font-size: 25px;
}

#newarrivals{
    font-size: 30px;
    text-align: center;
    margin: 50px;
}

.sales{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    text-align: center;
    font-size: 20px;
}

.salestitle{
    font-size: 30px;
}

.sales img{
    width:100%;
    height: 600px;
    object-fit: cover;
}

.sales a:hover img{
    border: 1.5px solid black;
    /* transition: 0.2s ease; */
    box-sizing: border-box;
    height: 630px;
    object-fit: cover;

}

.salestest{
    display: flex;
    flex-direction: row;
}



.offer2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* height: 400px; */
    /* border: 2px solid blue; */
}



.offer2 img{
    width: 100%;
    object-fit: cover;
    height: 900px;
}

.offerdesc2{
    background-color: black;
    color: white;
    text-align: center;
    padding-top: 300px;
}


.button{
    display: inline-block;
    text-decoration: none;
    padding:15px;
    border-radius: 10px;
    color:black;
    background-color: white;
    /* text-align: center; */
    margin-top: 20px;
}

.button:hover{
    color: white;
    background-color: grey;
    transition: 0.3s ease;
}

.footer {
    display: flex;
    justify-content: space-around;
    background-color: black;
    color: white;
    border-top: 1px solid white;
   padding: 15px;
  }
  
  .footer a{
    text-decoration: none;
    color: white;
  }

  .footer > div {
    margin: 10px;
    text-align: center;
    /* line-height: 75px; */
    font-size: 20px;
  }

#nav2{
    list-style-type: none;
    margin: 0;
}

#nav2 li a{
    text-decoration: none;
}


@media only screen and (max-width:600px){


    #nav{
        font-size: 10px;
        padding: 10px;
    }
    
    
   
.offer{
    display: grid;
    grid-template-columns: 2fr 2fr;
}

.offerdesc{
    padding-top: 20px;
    font-size: 8px;
}

.offer img{
    width: 100%;
}

.offertitle{
    font-size: 15px;
}

#newarrivals{
    font-size:18px ;
    margin: 25px;
}

.salestitle{
    font-size: 20px;
}

.sales img{
    width:100%;
    height: 200px;
    object-fit: cover;
}

.sales a:hover img{
    border: 1.5px solid black;
    /* transition: 0.2s ease; */
    box-sizing: border-box;
    height: 220px;
 

}

.sales{
 
    font-size: 10px;
}


.button{
    padding:2px;
    /* text-align: center; */
    margin-top: 0px;
}


.offer2 img{
    width: 100%;
    object-fit: cover;
    height: 400px;
}

.offerdesc2{
    font-size: 8px;
    padding-top: 150px;
}

.footer > div {
    font-size: 8px;
  }

}

@media only screen and (min-width:600px){
    .offerdesc{
        padding-top: 10px;
        font-size: 8px;
    }

    .offertitle{
        font-size: 35px;
    }


    .sales img{
        height: 400px;
    }
    
    
}   

@media only screen and (min-width:1200px){

    .offerdesc{
        padding-top: 200px;
        font-size: 15px;
    }

    .offertitle{
        font-size: 40px;
    }
    

    .sales img{
        width:100%;
        height: 600px;
        object-fit: cover;
    }


}