:root {
    --highlight: #eb7373;
    --mediumbg: rgba(0,0,0,0.3);
}

body {
    background-color: #222;
    margin: 0 !important;
    font-family: 'Rubik', sans-serif;
}

.navbar {
  margin: 0 auto;
  width:100%;
  height:80px;
  background-color: var(--mediumbg);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;  
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(3px);
}

.navbar-inner {
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-logo {
    height: 50px;
    margin-left: 10px;
}

.menu-selection {
    height: 100%;
    display: flex;
  }

.menu-point {
    padding-left: 20px;
    padding-right: 20px;
    align-items: center;
    height: 100%;
    display: flex;
    justify-content: center;
    font-weight: 500;
    color: white;
    font-size: 15px; 
  }
  
.menu-icon {
    font-size: 22px;
    margin-right: 3px;
    color: var(--highlight);
    margin-top: -3px;
  }

.menu-point:hover {
    background-color: var(--mediumbg);
  }
  
.menu-active {
    color: var(--highlight);
  }
  
.menu-active:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--highlight);
    top: 48px;
    left: 0;
  }
  
.menu-text {
    height: 100%;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    cursor: pointer;
    position: relative;   
  }
  
.menu-text:hover {
    color: var(--highlight);
    
  }
  
.menu-text:hover:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--highlight);
    top: 48px;
    left: 0;
    animation: slide 0.7s ease;
    
  }

  @keyframes slide {
    0% {
     width: 0%;
      opacity: 0;
    }
    100% {
      width: 100%;
      opacity: 1;
    }
  }