/* CSS HEX */
/*
--tan: #C5B168;
--brown: #332F1F;
--dark: ##2B2A25;

*/

/*element selectors*/
html {
  background-color: #706D60;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  width:97%;
  margin: auto;
}
h1{
  font-family:'Bevan', Arial, Helvetica, sans-serif;
  font-size: 50px;
  color: #332F1F;
}
h2, h3{
  font-family:'Kite One', Arial, Helvetica, sans-serif;
  font-size: 30px;
  color: #332F1F;
}
p {
  font-family:'Amiko', Arial, Helvetica, sans-serif;
  font-size: 30px;
  color: #2B2A25;
}
img {
  border: groove;
  padding: 5px;
}
ul {
  font-family:'Amiko', Arial, Helvetica, sans-serif;
  font-size: 30px;
  color: #2B2A25;
}

/*class selector*/
.left{
  float: left;
  margin-right: 20px;
}

.floatRight {
  float: right;
  margin: 20px;
}

.center {
  display: block;
  margin-left: 35%;
  margin-right: 46%;
  
}
.drop{
  padding-top: 100px;
  border-style: hidden;
}
/*ID descendant selectors*/
#Chihuahua {
  background-color: #332F1F;
  padding-top: 10px;
  padding-bottom: 10px;
  position: fixed;

}
#Chihuahua li {
  display: inline;
  list-style-type: none;
}
#Chihuahua a{
  color: #f2f2f2;
  font-size: large;
  padding: 60px;
  text-decoration: none;
}
#container {
  width: 95%;
  padding:10px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  background-image: url("../images/sand_background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
}

