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

::-webkit-scrollbar-thumb {
  background-color: rgba(197, 197, 197, 0.4235294118);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(163, 163, 163, 0.368627451);
}

/* Firefox */
::-moz-scrollbar {
  width: 8px;
}

::-moz-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}

::-moz-scrollbar-thumb:hover {
  background-color: #555;
}

.menubox {
  position: fixed;
  display: inline-block;
  align-items: center;
  top: 0px;
  right: -15px;
}

#menuBtn {
  position: fixed;
  width: 150px;
  top: 10px;
  right: 0px;
  color: var(--text-color);
  padding: 10px 20px;
  border: none;
  border-start-start-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  background: linear-gradient(rgba(255, 255, 255, 0.123), rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

#menu {
  position: fixed;
  top: 45px;
  width: 150px;
  text-align: center;
  right: 0px;
  opacity: 0;
  visibility: hidden;
  padding: 10px;
  border: 1px solid #ccc;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: top 0.5s ease;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  background: linear-gradient(rgba(255, 255, 255, 0.123), rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

#menu.show {
  opacity: 1;
  top: 45px;
  visibility: visible;
}

@keyframes slideIn {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
#menu a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  color: var(--text-color);
}

#socialIcons {
  display: flex;
  justify-content: flex-center;
  align-items: center;
}

#socialIcons img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

/*
  #main-button {


    color: var(--text-color);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.26), 0px 3px 18px rgba(0, 0, 0, 0.08);
  background: linear-gradient(
        rgba(255, 255, 255, 0.123),
        rgba(255, 255, 255, 0.1)
    );
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

  }
  #main-button:hover {
    background-color:#ececec4b;
  }

  .day-night {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transform: translateY(25%);
    margin-left: 10px;
    opacity: .4;
  }

  #menu a button {
    background-color: var(--background-color-2);
    color: var(--text-color);
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-image 0.3s ease-in-out;
    text-transform: uppercase;
    font-weight: 900;

  }

  #menu a button:hover {

    background-image: url(https://media.giphy.com/media/PVTouuJYtZbkSY3L2n/giphy.gif);
    background-size: cover;
    color: transparent;
    -moz-background-clip: text;
    -webkit-background-clip: text;
    text-transform: uppercase;

  }

  #menu {

    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.26), 0px 3px 18px rgba(0, 0, 0, 0.08);
  background: linear-gradient(
        rgba(255, 255, 255, 0.123),
        rgba(255, 255, 255, 0.1)
    );
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  .hidden {
    display: none;
  }

  #menu button {
    margin-bottom: 0px;

  }




  .share-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding-inline: 20%;
  }

  .facebook,
  .instagram,
  .linkedin {
    width: 30px;
    height: 30px;
    display: inline-block;
  }

  .facebook svg,
  .instagram svg,
  .linkedin svg {
    width: 100%;
    height: 100%;
    fill:var(--text-color);
  }


  $redColor: rgba(244,67,54,1);
$blueColor:rgba(33,150,243,1);

.flex-center {
  width: 100%;
  min-height: 50vh;

  background: #000;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

*//*# sourceMappingURL=menu.css.map */