@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&family=Poppins&family=Roboto&family=Sofia+Sans+Extra+Condensed&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
:root {
  --color-header: #f4efec;
  --color-text: #b19b6d;
}
@font-face {
  font-family: gillsans;
  src: url(../fonts/glsnecb.ttf);
}
@font-face {
  font-family: gillnova;
  src: url(../fonts/GillSansNova.ttf);
}
html,
body {
  /* overflow-x: hidden; */
  /* touch-action: pan-y pinch-zoom; */
}
body {
  background-color: #fff;
  color: #b19b6d;
  font-family: gillsans;
}

#menuToggle {
  padding: 20px 20px 10px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  z-index: 1;
}
#menuToggle input {
  position: absolute;
  width: 40px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}
#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #b19b6d;
  border-radius: 3px;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  transform-origin: 4px 0px;
}
#menuToggle span:first-child {
  transform-origin: 0% 0%;
}
#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #b19b6d;
}
#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
#menu {
  position: absolute;
  right: -300px;

  width: 120px;

  margin-top: 250px;
  padding-top: 20px;
  padding-left: 5px;

  background: rgb(255, 255, 255);
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transition: right 0.5s;
}

#menu li {
  padding: 10px 0 10px 10px;
  font-family: gillsans;
  font-size: 2rem;
}
#menuToggle input:checked ~ ul {
  right: 40px;
}
#menu a {
  color: #b19b6d;
  text-decoration: none;
  cursor: pointer;
}
#menu li:hover {
  background-color: #b19b6d;
  color: black;
}

.fullimage {
  display: flex;
  justify-content: center;
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 10%;
  margin-top: 5%;
  min-width: 500px;
  margin-bottom: 200px;
}
.pic-desc {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
}
text {
  color: #554a31;
}
h2 {
  font-family: "open+sans", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #716241;
}

p {
  font-family: "open+sans", sans-serif;
  font-size: 1em;
  line-height: 20px;
}
.fullimage img {
  max-width: 60%;
  height: auto;

  margin-right: 40px;
}
.footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  padding: 10px;
  background-color: rgb(51, 49, 49);
  letter-spacing: 0.1rem;
  margin-top: 200px;
  position: relative;
  bottom: 0;
  left: 0px;
  width: 100%;
}

.footer a {
  color: #b19b6d;
  text-decoration: none;
  cursor: pointer;
  margin-right: 10px;
  margin-left: 10px;
}
.footer i.fa-brands {
  color: #b19b6d;
}
.footer i.fa-brands:hover {
  background-color: #b19b6d;

  color: black;
}

.footer a:hover {
  background-color: #b19b6d;
  color: black;
}

@media (max-width: 560px) {
  h2 {
    font-size: 1.3rem;
  }
  p {
    font-size: 1rem;
  }
  .pic-desc {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  img {
    margin-bottom: 20px;
  }
}
