
:root {
    --text-color: #27222d;
    --bg-color: #b488bd;
  }
  
  .navbar {
    background-color: var(--bg-color); 
    padding: 20px 0; 
    align-items: center;
    justify-content: flex-end;
    margin: 0px;
  }
  
  .navbar .container {
    max-width: 1250px;
    width: 100%; 
    height: auto;
    /*margin: 0 auto; */
    /*margin-right: 1%;*/
    margin-left: 4%;
    padding: 0 20px;
    display: flex;
    justify-content: start; 
    
  }
  
  .navbar-logo {
    height: 70px; 
    margin-right: 10px; 
  }
  
  .navbar_nav {
    display: flex;
    align-items: center;
    margin-left: auto; 
  }
  
  .navbar ul {
    list-style-type: none;
    display: flex;
    align-items: center;
  }
  
  .navbar ul li {
    color: var(--text-color);
    margin-left: 20px; 
    /*font-size: 18px;*/
    font-size: 1.7em;
    font-weight: bold;
  }
  
  .navbar ul li a {
    color: var(--text-color); 
    text-decoration: none;
    padding: 8px 15px; 
    position: relative; 
    overflow: hidden;
  }
  
  .navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%; 
    width: 0; 
    height: 2px;
    background-color: var(--text-color); 
    /*transition: width 0.3s ease, left 0.3s ease;*/
  }
  
  .navbar ul li a:hover::after {
    width: 80%;
    left: 10%; 
  }
  
  .navbar ul li:active{
    color: black;
  }
  
  .navbar_signin {
    display: flex;
    align-items: center;
  }
  
  .navbar_signin button {
    color: var(--bg-color); 
    background-color: var(--text-color); 
    text-decoration: none;
    border: 5px solid var(--text-color);
    /*font-size: 18px; */
    font-size: .7em;
    font-weight: bold;
    /*padding: 8px 15px; */
    border-radius: 5px;
    cursor: pointer; 
    transition: all 0.3s ease; 
  }
  
  .navbar_signin button:hover {
    background-color: #ffd8b8; 
    color: var(--text-color);
    border-color: #ffd8b8;
  }
