/*styles the menu for all pages*/

.menu nav ul {
  list-style-type: none; /* Removes dots */
  padding-inline-start: 0; 
  align-items: center;
  justify-content: space-between;
  display: flex;
  padding: 10px 20px;
}

.menu nav li a
{
    text-decoration: none;
    color: black;
    font-family: 'Times New Roman', Times, serif;
    background-color: rgb(255, 255, 255);
    border-style: solid;
    border-color: black;
    border-width: 0.5px;
    padding: 15px;
    margin: 10px;
   
}
.menu nav li a:hover {
  background-color: #ce8c66;         
}

.wrapper {
  align-items: center;
  justify-content: space-between;
  display: flex;
  padding: 10px 20px;
  background-color: white;
  margin:5px;
}

.menutitle{
  color:#55251D;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

/*styles background*/
html{
  background-color: whitesmoke;
}

/*text styles*/

p {
    color: black;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.2em;
    background-color: white;
    padding-inline-start: 0;
      padding:10px;
      margin: 10px;
    text-align: justify;
  }

/* information for website content on about page*/
.info {
      color:#55251D;
      font-family:'Times New Roman', Times, serif;
      font-size: 1em;
      background-color: #F4D8CD ;
      padding-inline-start: 0;
      padding:10px;
      margin: 10px;
      padding-bottom: 100px;
}
.info li {
  list-style-type: none; /* Removes dots */
  text-align: justify;
  padding-inline-start: 0;
      padding:10px;
      margin: 10px;
}

/*for line on title block*/
.myinfo hr {
  height: 1px;           /* Sets the thickness */
  background-color:white; /* Sets the fill color */
  border: none;          /* Removes the default 3D border */
}

/*for the other lines*/
hr {
  height: 1px;           /* Sets the thickness */
  background-color: black; /* Sets the fill color */
  border: none;          /* Removes the default 3D border */
}

/*contact information page styling*/
.contact {
  color:#55251D;
  font-family:'Times New Roman', Times, serif;
  font-size: 1em;
  background-color: #F4D8CD ;
  padding:10px;
  margin: 10px;
  text-align: center;
}
.contact li {
  list-style-type: none; /* Removes dots */
}

/*company intro on home page*/
.companyintro {
 font-family: 'Times New Roman', Times, serif;
 text-align: center;
 padding: 10px 20px;
 background-color: whitesmoke;
 }

.companyintro h3 {
font-size: 1.3em;
}

h4 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  color:#8f493d;
  padding: 20px;
  font-size: auto;
 }

.image {
  display: flex;
  justify-content: center;
}

.image img {
  width: 50%;
}

/*php info page*/
.phpinfo {
  padding-bottom: 70px;
}

/*footer*/
.footer {
  align-items: center;
  justify-content: space-between;
  display: flex;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: whitesmoke;
  position: fixed;
}

.footer-left {
  display: flex;
  align-items: left;
  padding: 10px 20px;

}

.footer-left a{
  text-decoration: none;
  color: black;
  font-family: 'Times New Roman', Times, serif;
  background-color: rgb(255, 255, 255);
  border-style: solid;
  border-color: black;
  border-width: 0.5px;
  padding: 5px;
}

.footer a:hover {
  background-color: #ce8c66;         
}

.footer-right {
  align-items: right;
  display: flex;
}