:root {
  --color-white: #fff;
  --color-white-100: rgba(255, 255, 255, 0.1);
  --color-white-200: rgba(255, 255, 255, 0.2);
  --color-white-400: rgba(255, 255, 255, 0.4);
  --color-white-800: rgba(255, 255, 255, 0.8);
  --color-white-900: rgba(255, 255, 255, 0.9);
  --color-black: #1e1e1e;
  --color-black-100: rgba(0, 0, 0, 0.1);
  --color-black-50: rgba(211, 197, 197, 0.39);
  --color-black-200: rgba(0, 0, 0, 0.2);
  --color-black-500: rgba(0, 0, 0, 0.5);
  --color-black-600: rgba(0, 0, 0, 0.6);
  --color-blue-800: #007ff7;
  --app-color-white: rgb(252, 255, 251);
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  list-style: none;
}

button,
input {
  background-color: transparent;
  border: 0;
  outline: 0;
}
button img,
button,
li {
  cursor: url(/cursor/Link.cur), pointer;
}

body {
  user-select: none;
  font-family: 'Lexend', sans-serif;
  background: url(../background/MontereyBackground.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 100vh;
}

.navbar {
  width: 100%;
  padding: 0.1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  color: var(--color-white-900);
  box-shadow: 0 2px 10px var(--color-black-100);
  background: linear-gradient(to right, #c970b7, #e2b1e2, #eb71c6);
  /* background:transparent;
  backdrop-filter: blur(5px); */
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.navbar > ul {
  display: flex;
  align-items: center;
}

.navbar li {
  position: relative;
  font-size: 15px;
  margin: 0 4px;
  cursor: url(./cursor/Link.cur), pointer;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.288);
  transition: 0.2s;
}

.navbar .leftLi.logo img {
  transform: translateY(1px);
}

.navbar svg {
  fill: var(--color-white);
}

.navbar .leftLi {
  padding: 4px 8px;
}

@media screen and (max-width: 900px) {
  .hidden {
    display: none;
  }
}

.navbar .leftLi:hover {
  color: var(--color-white);
  border-radius: 5px;
  background-color: var(--color-white-200);
}

li.app_name {
  display: none;
  font-weight: 900 !important;
}

.navbar__right li {
  margin: 0 6px;
}
.navbar__right .rightButton {
  display: flex;
  align-items: center;
  padding: 4px 8px;
}
.navbar__right .rightButton img {
  width: 30px;
}

.navbar__right .rightButton ul > li > button img {
  margin-right: 5px;
}

.navbar__right .rightButton:hover {
  border-radius: 3px;
  background-color: var(--color-white-200);
}

@media screen and (max-width: 600px) {
  .navbar__right .rightButton {
    display: none;
  }
}

.navbar__right .clock #clock {
  margin-left: 15px;
  margin-right: 15px;
}

.navbar__right li .control-center {
  width: 32px;
  height: 19px;
}

li > ul {
  display: none;
  position: absolute;
  align-items: center;
  flex-direction: column;
  left: 0;
  top: 100%;
  font-weight: 600;
  padding: 4px;
  min-width: 200px;
  background: var(--color-white-400);
  backdrop-filter: blur(11px);
  border-radius: 5px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.363);
}

li:hover > ul {
  display: flex;
}

li > ul > li {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 5px;
  margin-bottom: 5px !important;
}

li > ul > li:last-child {
  border-bottom: 0;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

li > ul > li > button {
  color: var(--color-white);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  text-align: left;
  font-family: 'Lexend', sans-serif;
  font-weight: 100;
  padding: 4px 8px;
  border-radius: 5px;
  transition: 80ms;
  font-size: 14px;
  cursor: url(./cursor/Link.cur), pointer;
}

li > ul > li > button:hover {
  color: var(--color-white);
  background: var(--color-blue-800);
}

li > ul > li > button:active {
  background-color: #0063f7;
}

li > .menu__container {
  display: none;
  position: absolute;
  align-items: center;
  flex-direction: column;
  width: 380px;
  min-height: 400px;
  border-radius: 20px;
  top: 100%;
  right: 50%;
  transform: translateX(50%);
  background-color: rgba(224, 222, 222, 0.349);
  backdrop-filter: blur(11px);
  border: 1px solid rgba(70, 50, 77, 0.308);
  box-shadow: 0 7px 15px rgba(26, 26, 26, 0.24);
  overflow: hidden;
  padding: 15px;
}

li:hover .menu__container {
  display: flex;
}

li > .menu__container > .grid__controling {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-template-rows: 10% 10% 10% 10% 10% 10% 10% 10% 10% 10%;
  grid-gap: 10px;
}
li > .menu__container > .grid__controling .control_center--grid {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  width: 100%;
  height: 100%;
  box-shadow: 0 5px 15px rgba(44, 44, 44, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.178);
  overflow: hidden;
  border-radius: 12px;
}
.menu__container > .grid__controling .col-5 {
  grid-row-start: 4 span;
  grid-column-start: 2 span;
}
.menu__container > .grid__controling .col-7 {
  grid-row-start: 2 span;
  grid-column-start: 2 span;
}

.menu__container > .grid__controling .col-3 {
  grid-row-start: 2 span;
}

.menu__container > .grid__controling .col-12 {
  grid-row-start: 2 span;
  grid-column-start: 4 span;
}
.menu__container > .grid__controling .col-12--music {
  grid-row-start: 2 span;
  grid-column-start: 4 span;
}

.grid__controling .control_center--grid button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  font-size: 20px;
  transition: all 120ms ease-in-out;
  font-family: 'Lexend', sans-serif;
  cursor: url(../cursor/Link.cur), pointer;
}

.menu__container > .grid__controling input[type='range'] {
  -webkit-appearance: none;
  overflow: hidden;
  outline: none;
  display: flex;
  align-items: center;

  background-position: left;
  background-repeat: no-repeat;
  background-position-x: 20px;
}
.menu__container > .grid__controling #brightness {
  background-image: url(../icon/Sun.svg);
}
.menu__container > .grid__controling #sound {
  background-image: url(../icon/volume.svg);
}
.menu__container > .grid__controling input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 2rem;
  width: 2rem;
  cursor: url(/cursor/Link.cur), pointer;
  background-color: rgba(255, 255, 255, 0.658);
  box-shadow: -1px 1px 5px -1px rgba(0, 0, 0, 0.548);
  border-radius: 50px;
  border: 1px solid rgba(185, 179, 179, 0.459);
}

.menu__container
  > .grid__controling
  input[type='range']::-webkit-slider-runnable-track {
  cursor: url(/cursor/Link.cur), pointer;
  margin: 10px;
  padding: 5px 0;
  box-shadow: 5px 0 10px rgba(97, 96, 96, 0.486);
  background: rgba(255, 255, 255, 0.247);
  border-radius: 50px;
}

.grid__controling .control_center--grid button p {
  display: block;
  font-size: 14px;
  font-family: 'Lexend', sans-serif;
}

.grid__controling .control_center--grid button svg {
  background-color: var(--color-blue-800);
  padding: 5px;
  border-radius: 50%;
  margin: 0 5px;
}

.grid__controling .control_center--grid button:focus {
  background: var(--color-blue-800);
  color: var(--color-white);
}

.grid__controling .control_center--grid .musicPlayer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.musicPlayer--image {
  width: 70%;
  height: 100%;
  display: flex;
  align-items: center;
}
.musicPlayer--image img {
  width: 50px;
  margin: 0 0 0 10px;
}
.musicPlayer--content {
  width: 30%;
  height: 100%;
  display: flex;
  align-items: center;
}
.musicPlayer--content span {
  font-size: 40px;
}

@media screen and (max-width: 600px) {
  .navbar__right .clock #clock {
    margin-left: 0;
  }
}

.dock {
  display: flex;
  align-items: center;
  position: fixed;
  padding: 3px 8px;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  backdrop-filter: blur(80px);
  border: 1px solid var(--color-white-200);
  background: var(--color-white-100);
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.555);
  z-index: 10;
}

@media screen and (max-width: 900px) {
  .dock button img {
    width: 60px;
  }
  .dock {
    top: 83vh;
    height: 64px;
    border-radius: 20px;
  }
}

.dock .point {
  width: 6px;
  height: 6px;
  margin: 0;
  background: #f08080;
  border-radius: 50%;
  display: none;
  animation: top-to-bottom 0.3s;
  transition: 0.3s;
}

.dock .column {
  width: 1px;
  height: 45px;
  margin: 0 4px;
  background: var(--color-white-400);
}

.dock .icon {
  position: relative;
  display: grid;
  place-items: center;
  background: none;
  border: none;
  outline: none;
  transition: all 0.1s;
}

.dock .icon::after {
  position: absolute;
  display: block;
  background: rgba(245, 245, 245, 0.412);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
  clip-path: polygon(
    100% 0%,
    100% 0%,
    0% 0%,
    0% 0%,
    0% 0%,
    0% 0%,
    0% 0%,
    0% 0%,
    0% 80%,
    43% 80%,
    50% 101%,
    57% 80%,
    100% 80%,
    100% 0%
  );
}

.dock .icon:nth-child(1):hover::after {
  content: 'Finder';
}

.dock .icon:nth-child(2):hover::after {
  content: 'Launchpad';
}

.dock .icon:nth-child(3):hover::after {
  content: 'App store';
}

.dock .icon:nth-child(4):hover::after {
  content: 'Message';
}

.dock .icon:nth-child(5):hover::after {
  content: 'Itunes music';
}

.dock .icon:nth-child(6):hover::after {
  content: 'VScode';
}

.dock .icon:nth-child(7):hover::after {
  content: 'Mail';
}

.dock .icon:nth-child(8):hover::after {
  content: 'Photos';
}

.dock .icon:nth-child(9):hover::after {
  content: 'Calculator';
}

.dock .icon:nth-child(10):hover::after {
  content: 'Notes';
}

.dock .icon:nth-child(11):hover::after {
  content: 'Terminal';
}

.dock .icon:nth-child(12):hover::after {
  content: 'Preferences';
}

.dock .icon:hover::after {
  font-size: 13px;
  position: absolute;
  z-index: 1;
  top: -45%;
  left: -15%;
  width: 80px;
  height: 16px;
  padding: 4px 3px 10px;
  border-radius: 6px;
  font-family: 'lexend', sans-serif;
  font-weight: 700;
  transform: scale(0.8);
}

.dock .icon:hover {
  transform: scale(1.35);
}

.dock .icon img {
  width: 63px;
  transform: translateY(-2.5px);
  filter: drop-shadow(0 0 5px #2c2c2c7e);
}

.dock .icon img:active {
  filter: brightness(0.6) drop-shadow(0 0 10px #2c2c2c);
}
.container__Window {
  width: 100%;
  height: 90%;
  justify-content: space-around;
  align-items: center;
  display: none;
}

.window {
  display: none;
  min-width: 70%;
  max-width: 80%;
  height: 430px;
  overflow: hidden;
  border-radius: 1rem;
  background: transparent;
  box-shadow: 0 20px 30px var(--color-black-500);
  border: 1px solid #7c7d7d34;
  animation: zoom-out 0.3s;
}

.window__taskbar {
  height: 12%;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  background-color: var(--app-color-white);
}
.window__taskbar--actions {
  display: flex;
  align-items: center;
}

.window__taskbar:hover button::after {
  color: #000;
}

.window__taskbar--actions button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1px;
  height: 1px;
  padding: 8px;
  border-radius: 50%;
  transition: 0.4s;
}

.window__taskbar--actions button:not(:last-child) {
  margin-right: 8px;
}

.window__taskbar--actions button:nth-child(1) {
  background-color: #ff6057;
}

.window__taskbar--actions button::after {
  display: block;
  font-size: 14px;
  color: transparent;
  font-weight: 900;
}

.window__taskbar--actions button:nth-child(1)::after {
  content: '×';
}

.window__taskbar--actions button:nth-child(1):hover {
  background-color: #fc3c32;
}

.window__taskbar--actions button:nth-child(2) {
  background-color: #febc2e;
}

.window__taskbar--actions button:nth-child(2)::after {
  content: '−';
}

.window__taskbar--actions button:nth-child(2):hover {
  background-color: #ffa600;
}

.window__taskbar--actions button:nth-child(3) {
  background-color: #28c740;
}

.window__taskbar--actions button:nth-child(3)::after {
  content: '⤡';
  font-size: 13px;
}

.window__taskbar--actions button:nth-child(3):hover {
  background-color: #12aa29;
}

.window__taskbar--content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.window__taskbar--content h2 {
  color: var(--color-black);
  font-weight: 600;
  font-size: 18px;
}

.terminal .window__taskbar {
  height: 8%;
}

.terminal_content {
  width: 100%;
  height: 92%;
  padding: 16px;
  background: var(--color-black);
  color: #fff;
  font-size: 20px;
  font-family: 'Roboto Mono', monospace;
}

.color_green {
  color: green;
}

.color_blue {
  color: #1f48ff;
}

.window__taskbar--right {
  width: 60%;
  height: 100%;
  background-color: transparent;
  float: right;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

@media screen and (max-width: 900px) {
  .window__taskbar--right {
    width: 70%;
  }
}
.Customize__icon span {
  border: 1px solid rgba(204, 200, 200, 0.412);
  border-radius: 9px;
  transition: 0.2s;
  padding: 5px;
  cursor: url(/cursor/Link.cur), pointer;
}

.window__taskbar--right .containerSearch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 45%;
  height: 75%;
  background-color: var(--app-color-white);
  border-radius: 5px;
  border: 1px solid rgba(123, 123, 123, 0.412);
  padding-left: 8px;
}
.window__taskbar--right .containerSearch svg {
  fill: rgba(123, 123, 123, 0.412);
}
.window__taskbar--right input[type='search'] {
  width: 85%;
  height: 100%;
  background-color: transparent;
  color: var(--color-black);
  font-size: 18px;
  padding-right: 10px;
  font-family: 'Lexend', sans-serif;
}

.content {
  width: 100%;
  height: 88%;
  display: flex;
}

.Parent__content--typing {
  width: 70%;
  height: 100%;
  border-top: 1px solid #e0e2e1;
  background-color: var(--app-color-white);
}

.content__typing {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  resize: none;
  display: none;
  color: var(--color-black);
  font-weight: 900;
  font-size: 18px;
  font-family: 'Raleway', sans-serif;
  padding: 16px;
}

.content__sidebar {
  width: 30%;
  height: 100%;
  background: var(--color-white-400);
  backdrop-filter: blur(1rem);
}

.content__sidebar--notes {
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-y: scroll;
  background-color: transparent;
}

.content__sidebar--notes input {
  width: 90%;
  padding-left: 10px;
  height: 15%;
  background-color: transparent;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  outline: none;
  color: var(--color-black);
  transition: all 0.2s;
}

.content__sidebar--notes input::placeholder {
  color: white;
  text-shadow: 0 3px 10px rgb(46, 46, 46);
  padding: 7px;
}

.container_spotlight {
  display: none;
}

.spotlight_serach {
  width: 400px;
  height: 50px;
  display: flex;
  align-items: center;
  border: 1px solid var(--color-white-100);
  justify-content: start;
  border-radius: 8px;
  background-color: transparent;
  backdrop-filter: blur(10px);
  z-index: 10;
  box-shadow: 0 10px 10px rgba(37, 37, 37, 0.137);
}
.spotlight_serach svg {
  margin-left: 10px;
}
.spotlight_serach input {
  width: 90%;
  font-size: 20px;
  font-weight: 100;
  font-family: Lexend;
  margin-left: 10px;
  padding-right: 10px;
}
.spotlight_serach input::placeholder {
  color: white;
}

.launchpad {
  display: none;
  animation: opacity 300ms;
  width: 100%;
  height: 100%;
  background-color: transparent;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: -10;
}

.searchbox {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.searchbox .searchContainer {
  height: 30px;
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-top: 1px solid rgba(255, 255, 255, 0.582);
  border-bottom: 1px solid rgba(255, 255, 255, 0.582);
  border-right: 1px solid rgba(255, 255, 255, 0.219);
  border-left: 1px solid rgba(255, 255, 255, 0.219);
  border-radius: 4px;
  padding: 0 3px;
}

.searchbox .searchContainer svg {
  fill: #fff;
}

.searchbox input {
  text-align: center;
  color: #fff;
  font-size: 17px;
  height: 100%;
  font-family: 'Roboto', sans-serif;
}

.searchbox input::placeholder {
  color: #fff;
  font-weight: 100;
}

.searchbox input:focus {
  text-align: left;
}

.Apps-container {
  width: 90%;
  height: 60%;
  margin: 0 auto;
  display: grid;
  grid-row-gap: 10px;
  grid-template-columns: 25% 25% 25% 25%;
  grid-template-rows: 25% 25% 25% 25%;
}

.launchpad .child-launchpad {
  display: flex;
  place-items: center;
  flex-direction: column;
  cursor: url(/cursor/Link.cur), pointer;
}

.launchpad .child-launchpad img {
  width: 80px;
}

@media screen and (min-width: 1200px) {
  .launchpad .Apps-container {
    grid-row-gap: 20px;
  }
  .launchpad .child-launchpad img {
    width: 100px;
  }
  .launchpad .child-launchpad strong {
    font-size: 21px;
  }
}

.launchpad .child-launchpad:active {
  animation: vibrate 0.1s ease-in forwards infinite alternate;
  transition: transform 0.1s cubic-bezier(0.42, 0, 1, 0.2);
}

.launchpad .child-launchpad strong {
  color: #fff;
}

::-webkit-scrollbar-track {
  background-color: transparent;
  border: 1px solid rgba(51, 49, 49, 0.137);
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  cursor: url(/cursor/Link.cur), pointer;
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-thumb {
  background: #b1b1b8;
  border-radius: 10px;
  cursor: url(/cursor/Link.cur), pointer;
}

/******Animations*****/

@keyframes zoom-out {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes to-top-bottom {
  0% {
    transform: translate(0);
  }
  25% {
    transform: translateY(-12px);
  }
  50% {
    transform: translateY(-3px);
  }
  75% {
    transform: translateY(-21px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes vibrate {
  0% {
    transform: rotate(9deg);
  }
  100% {
    transform: rotate(-9deg);
  }
}

@keyframes top-to-bottom {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.calculator {
  display: none;
  width: 20rem;
  max-width: 100%;
  height: 25rem;
  max-height: 80%;
  background: var(--color-black-500);
  backdrop-filter: blur(1rem);
  border-radius: 1rem;
  box-shadow: 0 0.5rem 2rem var(--color-black-500);
  border: 1px solid var(--color-white-200);
  animation: zoom-out 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.calculator__top {
  width: 100%;
  height: 30%;
  display: flex;
  flex-direction: column;
}

.calculator__top--taskabr {
  height: 40px;
  padding: 0 2px;
  display: flex;
  align-items: center;
}

.calculator__top--taskabr button {
  position: relative;
  width: 1px;
  height: 1px;
  padding: 8px;
  border-radius: 50%;
  margin-left: 8px;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calculator__top--taskabr button:nth-child(1) {
  background-color: #ff6059;
}

.calculator__top--taskabr button:nth-child(1):hover {
  background-color: #fc3c32;
}

.calculator__top--taskabr button:nth-child(2) {
  background-color: #ffbd2e;
}

.calculator__top--taskabr button:nth-child(2):hover {
  background-color: #ffa600;
}

.calculator__top--taskabr button:nth-child(3) {
  background-color: #28c941;
}

.calculator__top--taskabr button:nth-child(3):hover {
  background-color: #12aa29;
}

.calculator__top--taskabr button::after {
  display: block;
  font-size: 14px;
  color: transparent;
  font-weight: 900;
  position: absolute;
}

.calculator__top--taskabr:hover button::after {
  color: #000;
}

.calculator__top--taskabr button:nth-child(1)::after {
  content: '×';
}

.calculator__top--taskabr button:nth-child(2)::after {
  content: '−';
}

.calculator__top--taskabr button:nth-child(3)::after {
  content: '⤡';
}

.calculator__top--output {
  flex: 1;
  color: var(--color-white);
  font-size: 2rem;
  text-align: right;
  font-family: 'Lexend';
  border: none;
  background: transparent;
  padding: 0 0.8rem;
}

.input {
  width: 100%;
  height: 70%;
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  grid-template-rows: 20% 20% 20% 20% 20%;
}

.input .button {
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  font-family: 'Montserrat';
  font-weight: bold;
  border: 1px solid rgba(95, 95, 95, 0.336);
}

.r-radius {
  border-bottom-right-radius: 15px;
}

.large {
  grid-column-start: span 2;
  border-bottom-left-radius: 15px;
}

.operator {
  background-color: #fd9e2a;
  color: #fff;
}

.number {
  background-color: #d6d6d6;
  color: rgb(0, 0, 0);
}

.operator-2 {
  background-color: #ccc9c9;
  color: rgb(0, 0, 0);
}

.context-menu {
  padding: 0 3px;
  position: absolute;
  border-radius: 7px;
  text-align: center;
  background: rgba(255, 255, 255, 0.219);
  border: 1px solid rgba(255, 255, 255, 0.281);
  overflow: hidden;
  backdrop-filter: blur(15px);
}

.context-menu ul {
  padding: 0;
  margin: 0;
  min-width: 250px;
  list-style: none;
}

.context-menu ul li {
  margin: 4px 0;
  border-bottom: 1px solid rgba(65, 64, 64, 0.288);
}

.context-menu ul li:last-child {
  border: none;
}

.context-menu ul li button {
  color: var(--color-white);
  width: 100%;
  height: 100%;
  text-align: left;
  font-size: 15px;
  font-family: 'Lexend', sans-serif;
  border-radius: 5px;
  padding: 4px 8px;
  transition: 80ms;
  font-weight: 300;
  margin: 0 0 4px 0;
  display: flex;
  flex-direction: row;
  cursor: url(./cursor/Link.cur), pointer;
}
.context-menu ul button:hover {
  background: var(--color-blue-800);
}
