.menu__toggler {
  /* position: absolute; */
  top: 20px;
  left: 20px;
  z-index: 999;
  height: 28px;
  width: 28px;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.menu__toggler span,
.menu__toggler span::before,
.menu__toggler span::after {
  position: absolute;
  content: '';
  width: 28px;
  height: 2.5px;
  background: #e8c4ff;
  border-radius: 20px;
  transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.menu__toggler span::before {
  top: -8px;
}
.menu__toggler span::after {
  top: 8px;
}
.menu__toggler.active > span {
  background: transparent;
}

.menu__toggler.active > span::before, .menu__toggler.active > span::after {
  background: #e8c4ff;
  top: 0px;
}
.menu__toggler.active > span::before {
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
}
.menu__toggler.active > span::after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.menu {
  /* position: absolute; */
  left: -30%;
  z-index: 998;
  /* color: #005c9c; */
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  width: 250px; /* 30%; */
  height: 100%;
  padding: 10px;
  padding-top: 50px;
  /* display: flex;
  flex-direction: column; */
  justify-content: center;
  transition: 300ms left cubic-bezier(0.77, 0, 0.175, 1);
}
@media only screen and (max-width: 800px) {
  .menu {
    width: 250px;
    left: -250px;
  }
}
@media only screen and (max-height: 400px) {
  .menu { padding-top: 15px;  }
}
.menu.active {
  left: 0;
}
.menu p {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

@media only screen and (min-width: 992px) {
  .menu__toggler { display: none }
}


/* BASIC STYLES */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: 'Open Sans', sans-serif;
  /* display: flex; */
  justify-content: center;
  align-items: center;
}