:root {
  --title-opacity: 0;
  --title-width: 0%;
}

.navbar_inside {
  background: transparent;
  border-radius: 25px;
  display: flex;
  flex-direction: row;
  gap: 0rem;
  padding: 1rem;
  align-items: center;

  backdrop-filter: blur(20px);
  box-shadow: 0px 0px 50px 10px rgba(0, 0, 0, 0.1);

  color: #000000;

  transition: all 0.4s;
}

.navbar_inside:hover {
  backdrop-filter: blur(25px);
  box-shadow: 0px 0px 50px 10px rgba(0, 0, 0, 0.2);
}

.navbar_icon {
  height: 5rem;
  width: auto;
  transition: all 0.5s;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  padding: 0.25rem;
  flex-shrink: 0;
  background: transparent;
}

.navbar_m {
  flex-grow: 1;
}

.right_container {
  display: flex;
  flex-direction: row;

  align-items: center;
}

.navbar_r {
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: bold;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  transition: all 0.2s;
  text-align: right;
  flex-shrink: 0;
  background: transparent;

  text-shadow: 0px 0px 7px rgba(255, 255, 255, 0.3);
}

.navbar_r:hover {
  background: rgba(77, 77, 77, 0.1);
}

.nolink {
  text-decoration: none;
  color: #000;
  font-size: var(--navbar-size);
}

@media (max-width: 800px) {
  .right_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 2rem;
  }

  .navbar_icon {
    height: 10rem;
  }
}
