body,
html {
  margin: 0;
  padding: 0;
}

body {
  background: #f8f7f5;
  color: #888888;
}

#mobileBodyContent {
  background: #f8f7f5;
  position: relative;
  z-index: 20;
  width: 100%;
  height: 100%;
  overflow: hidden;
  visibility: visible;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -khtml-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

#header {
  height: 60px;
  background: #eae8e5;
}

#image {
  height: 280px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
#image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

#title {
  height: 20px;
  width: 200px;
  margin: 40px auto;
  background: #eae8e5;
  color: red;
}

#text .item {
  height: 10px;
  width: calc(100% - 40px);
  margin: 20px auto;
  background: #eae8e5;
}

#burgerBtn {
  border-top: 2px solid #f85051;
  height: 25px;
  width: 30px;
  box-sizing: border-box;
  /* Fix the burger menu on the screen */
  position: fixed;
  z-index: 30;
  right: 15px;
  top: 90%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -khtml-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
#burgerBtn:before {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 30px;
  left: 0;
  background: #f85051;
  top: 10px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -khtml-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
#burgerBtn:after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 30px;
  left: 0;
  background: #f85051;
  bottom: 0;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -khtml-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

#nav {
  position: absolute;
  z-index: 10;
  list-style-type: none;
  margin: 100px 0 0 20px;

  overflow: hidden;
}
#nav li {
  margin: auto;
  text-align: center;

  /* height: 130px; */
  /* width: 0; */
  /* margin: 30px 0; */
  background: #eae8e5;
  -webkit-transition: all 0.6s ease-in;
  -moz-transition: all 0.6s ease-in;
  -khtml-transition: all 0.6s ease-in;
  -o-transition: all 0.6s ease-in;
  transition: all 0.6s ease-in;
  color: black;
}

.navigation #nav li {
  /* width: auto; */
  /* margin-left: 10%;  */
  /* margin-right: 10%; */
  text-shadow: 0.2px 0.2px rgb(85, 17, 17);
  font: arial;
  font-weight: 600;
}

.navigation #burgerBtn {
  border-color: transparent;
}
.navigation #burgerBtn:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 33px;
  left: -2px;
}
.navigation #burgerBtn:after {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -khtml-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  bottom: 11px;
  width: 33px;
  left: -2px;
}

.demo3.navigation #mobileBodyContent {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -o-opacity: 0;
  opacity: 0;
  -webkit-transform: scale(0.85);
  -moz-transform: scale(0.85);
  -khtml-transform: scale(0.85);
  -o-transform: scale(0.85);
  transform: scale(0.85);
  visibility: hidden;
}

footer {
  position: fixed;
  z-index: 1000;
  left: 0;
  bottom: 0;
  display: block;
  padding: 20px;
  box-sizing: border-box;
}

footer a {
  text-decoration: none;
  display: block;
  width: 50px;
}

footer a svg {
  width: 100%;
  max-width: 50px;
  min-width: 40px;
  display: inline-block;
}

/*# sourceMappingURL=style.css.map */
