/* Menu transitions */
.menu {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.page {
  position: fixed;
  z-index: 1100;
  top: 0;
}
#page-1 {
  left: -100%;
  background: #000;
  transition: 1s;
}
#page-1.active {
  transition: 1s;
  left: 0;
}
#page-2 {
  right: -100%;
  background: #000;
  transition: 1s;
}
#page-2.active {
  transition: 1s;
  right: 0;
}
#page-3 {
  left: -100%;
  background: #000;
  transition: 1s;
}
#page-3.active {
  transition: 1s;
  left: 0;
}
#page-4 {
  right: -100%;
  background: #000;
  transition: 1s;
}
#page-4.active {
  transition: 1s;
  right: 0;
}
.close {
  position: absolute;
  width: 32px;
  height: 32px;
  opacity: 0.6;
  cursor: pointer;
}
.close:hover {
  opacity: 1;
}
.close:before,
.close:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #fff;
}
.close:before {
  transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
}
.btn-top-left {
  top: 1%;
  left: 1%;
}
.btn-top-right {
  top: 1%;
  right: 1%;
}
.btn-bot-left {
  bottom: 1%;
  left: 1%;
}
.btn-bot-right {
  bottom: 1%;
  right: 1%;
}
#about {
  position: relative;
}
#about.open {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 1s;
  z-index: 1000;
  overflow: hidden;
  align-items: baseline;
  flex-direction: column;
}
#about-content {
  flex-direction: column;
  justify-content: left;
  align-items: baseline;
}
#about p {
  margin-bottom: 4vh;
}
.about-text {
  padding: 5%;
}
