/* style.css */

body { 
  background-image: url(../img/sparks.jpg);
  background-size: 2560px 1440px;
  background-color: black;
  color: lightgrey;
  font-family: Times, serif;
  font-size: 25px;
  line-height: 1.4;
  padding:0;
  margin:0;
}

/* Global */
.container {
	width: 90%;
	margin: auto;
}

.row {
  display: flex;
}

.column {
  margin:auto;
  flex: 33.33%;
  padding: 5px;
  overflow: hidden;
}

/* Blog */

.blog {
	font-size: 25px;
}

/* Header */

header #navigation{
	font-family: Helvetica, sans-serif;
}

header #homepage{
	font-family: Helvetica, sans-serif;
	background: grey;
	text-shadow: 1px 1px orange;
	color: black;
}

h1{
	text-align: center;
	font-family: Helvetica, sans-serif;
	text-shadow: 0.5px 0.5px orangered;
}


h2{
	font-family: Helvetica, sans-serif;
	font-size: 25px;
	text-shadow: 0.5px 0.5px orangered;
}

/* Navigation */

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

li a {
  float: left;
  text-transform: uppercase;
  font-size: 20px;
  display: block;
  color: lightgrey;
  padding: 12px 16px;
  text-decoration: none;
}

li a:hover {
  background-color: #111;
}

.active{
  background-color: orange;
  color: white;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Contact and Custom Ordering */

input[type=text], select, textarea{
  color: black;
  width:100%;
  padding: 15px;
  background-color: lightgrey;
  border: 1px solid;
  border-radius: 8px;
  box-sizing: border-box;
  margin-top: 6px; 
  margin-bottom: 16px;
}

input[type=submit] {
  background-color: orange;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: grey;
}

.title {
  width: 10%;
  margin-top: 6px;
}

.details {
  float: center;
  width: 25%;
  margin-top: 6px;
}

.customordering {
  align-content: center;
}

/* Footer */

#page-container {
  position: relative;
  min-height: 100%;
}

#content-wrap {
  padding-bottom: 2rem; 
}

#footer {
  font-family: Helvetica, sans-serif;
  position: fixed;
  bottom: 0px;
  width: 100%;
  height: 3rem;          
  color:orange;
  background-color:grey;
  text-align: center;
  padding: 5px 5px 15px 5px;
}
