
                     /* navigation bar  */
#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;
}

#openingtitle{
    background-color: black;
    height:500px;
    text-align: center;
    color: white;
}



.title{
    font-size: 60px;
    padding-top: 200px;
}



.stylist{
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* height: 400px; */
    /* border: 2px solid blue; */
}



.stylist img{
    width: 100%;
    object-fit: cover;
    height: 800px;
}

.stylistdesc{
    background-color: white;
    color: black;
    text-align: center;
    padding-top: 200px;
    font-size: 30px;
}

.stylistdesc p{
    margin: auto;
    width:80% ;
    font-size: 25px;
}


.header{
    font-size: 60px;
    text-align: center;
    margin-bottom: 120px;
}

                                        /* Different price options made available for customers  */

#pricesection{
    background-color: black;
    color:white;
    padding-top:140px;
    height:750px;
}

.options{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* border:2px solid white; */
    margin:20px;
}

.pricesdesc {
    margin-right: 40px;
    font-size: 20px;
    padding: 15px;
    
}



.options h1{
    text-align: center;
    margin-bottom: 30px;
    font-size: 35px;
}




.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;
   
  }
  
  .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;
        width: 100%;
    }

    #openingtitle{
        height:300px;
    }
    
    
    
    .title{
        font-size: 40px;
        padding-top: 100px;
    }

    .stylist img{
        height: 300px;
    }
    
    .stylistdesc{
        padding-top: 70px;
        font-size: 15px;
    }
    
    .stylistdesc p{
      
        font-size: 10px;
    }

    #pricesection{
      
        padding-top:40px;
        height:700px;
        /* width: 100%; */
    }
    
    
    
    .pricesdesc {
        margin-right: 0px;
        font-size: 10px;
        padding: 15px;
        
    }

    .pricesdesc h1{
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    
    .options{
        display: grid;
        grid-template-columns: 1fr;
        /* border:2px solid white; */
        margin:0px;
    }
    

    .header{
        font-size: 25px;
        margin-bottom: 10px;
    }
  
    .button{
      
        padding:10px;
        border-radius: 10px;
        margin-top: 10px;
    }
    .footer > div {
        font-size: 8px;
      }
  
    
}

@media  only screen and (min-width:600px){
    .header{
        font-size: 40px;
      
        margin-bottom: 20px;
    }

    #pricesection{
       
        padding-top:20px;
        /* height:750px; */
    }
    
    .pricesdesc {
        margin-right: 10px;
        font-size: 15px;
        padding: 10px;
        
    }

    
    .pricesdesc h1{
        font-size: 30px;
        margin-bottom: 10px;
    }
    
    
}

@media  only screen and (min-width:1200px){

    .pricesdesc {
        margin-right: 40px;
        font-size: 20px;
        padding: 15px;
        
    }
    
    
    
    .options h1{
        text-align: center;
        margin-bottom: 30px;
        font-size: 35px;
    }
    
    
    .header{
        font-size: 60px;
    
        margin-bottom: 120px;
    }
    
    #pricesection{
     
        padding-top:140px;
        height:750px;
    }
}