

body {
  background-color: #dddcd1;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
}

.wire-frame {
  width: 100%;
  height: 100%;
  background-color: #dddcd1;
}

.wire-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}

.menu-visible .wire-frame {
  opacity: .8;
  filter: blur(3px);
  transition: all 0.1s ease-in-out .2s;
}


#sidemenu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100vw;
  height: 100vh;
  transition: all .8s ease-in-out;
  z-index: 999;
  display: flex;
  justify-content: flex-end;
}

.sidemenu-content {
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #d2e0d9;
}

.menu-visible #sidemenu {
  right: 0;
}

#sidemenu img {
  width: 100%;
  height: auto;
  object-fit: contain;
  vertical-align: bottom;
}

header {
  position: absolute;
  top: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
}

.header-menu-btn {
  width: 60px;
  height: 60px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
}