.menu {
  position: fixed;
  cursor: pointer;
  top: 32px;
  right: 32px;
  background-color: #fff;
  border-radius: 50%;
  width: 104px;
  height: 104px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#menuText {
  font-family: montserrat, sans-serif;
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 40%;
  height: 100vh;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
  text-align: center;
}

.nav ul li {
  margin: 20px 0;
}

.nav.active {
  transform: translateX(0);
}

.nav a {
  color: #363636;
  text-decoration: none;
  font-size: 26px;
  margin: 15px 0;
  transition: color 0.3s ease-in-out;
}

.nav a:hover {
  color: #d8d8d8;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 998;
  display: none;
}

.overlay.active {
  display: block;
}

@media screen and (max-width: 960px) {
  .nav {
    width: 100%;
  }
  .menu {
    width: 80px;
    height: 80px;
    top: 15px;
    right: 15px;
  }

  .menu > div {
    width: 41px;
    height: 41px;
  }

  .menu > div img {
    width: 100%;
  }

  .menu #menuText {
    font-size: 12px;
    margin-top: 0.5em;
  }
}
