* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body,
.main {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
  max-width: 10px;
}

::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #222222;
  border: 1px solid white;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  border: 1px solid white;
  background-color: rgb(255, 255, 255);
}

body {
  display: flex;
  height: 100vh;
  width: 100vw;
  font-family: "Fuzzy Bubbles";
}

.container {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
}

.navbar {
  position: relative;
  width: 20%;
  min-height: 100vh;
  overflow-y: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow-x: hidden;
  background: white;
}
.navbar .content {
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  position: absolute;
  cursor: pointer;
  border-radius: 50%;
}
.navbar .content img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 50%;
}

.list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  list-style-type: none;
  width: 100%;
}
.list a {
  margin: 5px 0px;
  position: relative;
  padding: 15px 0px;
  width: 100%;
  display: flex;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  color: red;
}
.list a span {
  transform: translateX(0px);
  transition: 0.5s;
  z-index: 5;
}

.a_activ {
  background: rgb(1, 224, 1);
  color: black;
}
.a_activ span {
  transform: translateX(50%);
}
.a_activ::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: 0;
  top: -100%;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  box-shadow: 0px 20px 0px rgb(1, 224, 1);
}
.a_activ::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: 0;
  bottom: -100%;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  box-shadow: 0px -20px 0px rgb(1, 224, 1);
}

.main {
  overflow-y: auto;
  position: relative;
  width: 80%;
  height: 100vh;
  background: rgb(1, 224, 1);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.main section {
  padding: 10px 20px;
  border: 1px solid yellow;
  border-left: none;
  position: relative;
  width: 100%;
  min-height: 100vh;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
}
.main #not {
  width: 400px;
  height: 400px;
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */