/*CSS style page for pricing page
Jason Archuleta
5/10/23*/

* {box-sizing: border-box;}
/*This is the navigation area styling to set it up front and to the left*/
nav{
    float: left;
    z-index: 9999;
    text-align: center;
    margin: 0;
   
    padding-top: .5em;
    padding-right: 0;
    background-color: #bdbdff;
    height:100vh;
    width: 150px ;
}
/*This stylizes the items in the nav area*/
nav ul{
    margin: 0;
    padding-right: 2em;
    font-size: 1.2em;
    list-style-type: none;
    }
nav:link{
    color: #FFFFFF;
}
.even:link{
    color:#FFFFFF;
}
/*This classs stylizes the list that contains the nav elements*/
.even{
    height: 100%;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin: 0;
}
/*This sets up the header element class area*/
.home{
height: 50vh;
height: 20vh;
padding-top: 3em;

}
/*This is the styling for the header element*/
header{
    background-color:#b39d3a; color: #2e2fb3;
    background-size: 100% 100%;
    background-position: right;
    margin-top: 5px;
    text-decoration: none;
    font-size: 90%;
    min-height: 200px;
    text-align: center;

}
header:link{
    color: #2E2FB3
}
header a{
    text-decoration: none;}
/*This sets up the color for the overall page*/
body{
    background-color: #2E2FB3; color: #b39d3a;
}

/*This sets the area for the main part of the page*/
main{
    margin-left: 160px;
    margin-right: 160px;
}
/*This is the syling for white wrapper that will contain most of the sites content*/
#wrapper{
    background-color:#FFFFFF; color: #b39d3a;
    margin-left: 22%;
    width: 65%;
height: 100vh;
}
/*This sets the sizing for the logo image in the header*/
#curled{
    height: 150px;
    width: 150px;
    background-image: url(hair.jpeg);
    background-size: 50% 50%;
    background-repeat: no-repeat;
    padding-left: 150px;
    margin-left: 52%;
    margin-right: auto;
}
/*This sets the styling for any paragraphs*/
p{font-weight: bold;
text-align: center;}
/*This sets the styling for any header 2s*/
h2{text-align: center;
color: #2E2FB3;}
/*This sets the sizing for what will be the bottom picture on a couple of the pages*/
#sal{
    display: flex;
    justify-content: center;
    margin-top: 28px;
}
/*Styling for the footer*/
footer:link{color:#b39d3a}
/*Sets up and styles the table on the pricing page*/
table{
    border: 2px solid #b39d3a;
    margin-bottom: 1em;
    min-width: 400px;
    border-collapse: collapse;
    font-weight: bold;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: #2E2FB3;
}
/*Column elements of the table*/
td{
    padding: .5em;
    border: 2px solid #b39d3a;
}
/*Row elements of the table*/
tr{
    padding: .5em;
    border: 2px solid #b39d3a;
}
caption{
    margin: 1em;
    font-weight: bold;
    font-size: 120%;
}
/*Sets the format of the form up and makes it almost functional*/
form { display: flex;
    flex-flow: column nowrap;}
    form{ display: grid;
    grid-template-rows: auto;
    grid-template-columns: 9em 1fr;
    grid-gap: 1em; gap: 1em;
    width: 60%; max-width: 40em;
margin-top: 20px;
font-weight: bold;} 
/*These set up the format of the picutres on the style page*/
.column {
    float: left;
    width: 33.33%;
    height: 20px;
    padding: 5px;
    color:#2E2FB3;
  }
  .row::after {
    content: "";
    clear: both;
    display: table;
  }
  .big{
    line-height: 70px;
  }
  /*Label for video*/
  .video h3{
    text-align: center;
  }
  /*Sets sizing for the embedded video*/
  video { width: 100%; height: auto; max-width: 400px; 
margin-top: 150px;
margin-left: 180px;}
.sent{margin-top: 20px;}