/* Donut Shop Steez!

  Table of Contents:
  -background 12-18
  -text 20-38
  -table 40-86
  -form 88-120
  -button 122-133
  -images 144-159
  -layout 161-170 */

/*background*/
body {
  background-color: #000D0C;
  margin-top: 70px;
  width: 90%;
  background-image: url("../img/black.jpg");
}

/*text*/
h1 {
  color: #BFB999;
  font-family: 'Syncopate', sans-serif;
  margin-left: 1%;
}

#description {
float: right;
  width:75%;
  font-family: 'Syncopate', sans-serif;
  color: #54594C;
  background-color: #000D0C;
  padding-left: 1%;
  padding-right: 1%;
}

#blankspace{
}

/*table*/
td {
  padding: 15px;
}

#table-padding{
  padding-top: 5%;
  padding-left: 2%;
}

#fs-shops {
  border-width: 4px;
  width: 100px;
  margin-left:auto;
  margin-right:auto;

}

#donut-table {
border-color: #000D0C;
background-color: #000D0C;
width: 90%;

}
#table-title {
  color: #BFB999;
  font-family: 'Syncopate', sans-serif;
  font-size: 20px;
}

th {
  color: #54594C;
  font-family: 'Syncopate', sans-serif;
}

td {
  color: #54594C;
  padding: 10px;
  padding-right: 12px;
  font-family: 'Syncopate', sans-serif;
}

tr {
  color: #54594C;
  font-family: 'Syncopate', sans-serif;
  font-weight: bold;
}

/*form*/
#new-shop-form{
  border-color: #54594C;
  border-width: 4px;
  width: 20%;
  display: inline-block;
  position: relative;
  padding-left: 2%;
  z-index: 5;
}

#form-title {
  color: #BFB999;
  font-family: 'Syncopate', sans-serif;
  font-size: 14px;
}

fieldset {
  border-color: #54594C;
  background-color: #000D0C;
}

label {
  font-family: 'Syncopate', sans-serif;
  color: #54594C;
  font-size: 14px;
}

input {
  background-color: #54594C;
  border-color: #BFB999;
  display: block;
}

/*button*/
button {
  color: #000D0C;
  background-color: #54594C;
  border-color: #BFB999;
  font-family:'Syncopate', sans-serif;
  font-weight: bold;
  padding-top: 8px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

#add-new-shop:hover {
 cursor: pointer;
}

.highlight:hover{
  background-color: #BFB999;
  color: #000D0C;
}

/*images*/
.picture {
  position: absolute;
  top: 1%;
  right: 1%;
  z-index: 11;
  transition: transform 3s ease-in-out;
}
.picture:hover {
  transform: rotateX(360deg);
}

#donut-king {
  clear: left;
  float:right;
}

/*layout*/
header {
  position: fixed;
  top: 0;
  left: 0;
  height: 75px;
  background-color: #000D0C;
  width: 100%;
  z-index: 10;
}

