/*styles the menu for all pages*/

/*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;
}

/*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;
}

/*styling the home page*/
ul {
  list-style-type: none; /* Removes dots */
  padding-inline-start: 0; 
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 10px 20px;
}

a:hover {
  background-color: #b9584b;         
}

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;
   
}

/*styling the form page*/

html {
  margin-bottom: 100px;
  background-color: #ce8c66;
}

form {
  border-style: solid;
  border-color: black;
  border-width: 1px;
  background-color: white;
  padding: 30px;
  text-align: center;
}

img {
  border-style: solid;
  border-width: 5px;
  border-color:#55251D;
}
.product {
  padding: 30px;
  border-style: solid;
  border-color: black;
  border-width: 1px;
}

h3 {
  text-align: left;
  font-family: Georgia, 'Times New Roman', Times, serif;
  padding: 5px;
  margin: 10px;
  font-family: 'Times New Roman', Times, serif;
}

p {
  text-align: left;
  padding: 5px;
  margin: 10px;
  font-family: 'Times New Roman', Times, serif;
}


/* Style the submit button */
input[type=submit] {
  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;
}

input[type=submit]:hover {
    background-color: #ce8c66;  
}

/*styling the results page*/
.message {
  padding: 3px;
  font-family:Georgia, 'Times New Roman', Times, serif;
  color:#331813;
  text-align: center;
}

table {
  text-decoration: none;
  color: black;
  border-style: solid;
  border-color: black;
  border-width: 0.5px;
  padding: 5px;
  margin: 10px;
  font-size: 0.9em;
  background-color: white;
}

th {
  padding: 5px;
  margin: 10px;
  font-family: Georgia, 'Times New Roman', Times, serif;
    border-style: solid;
  border-color: black;
  border-width: 0.5px;
}

td {
      border-style: solid;
  border-color: black;
  border-width: 0.5px;
}



