.nav {
    height: ;
    display: inline-block;
    justify-content: left;
    padding: 10px 0px;
    margin-top: 0px;
    font-size: 20px;
  }
  
  .nav ul li {
    list-style: none;
    display: inline-block;
    padding: 10px 20px;
  }
  .nav ul li a {
    text-decoration: none;
    color: #1d1d24;
    position: relative;
    padding: 5px 0;
  }
  .nav ul li a:hover {
    color: #fd4766;
  }
  .nav ul li a:after {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    height: 3px;
    background: #fd4766;
    transition: 0.3s;
    bottom: 0;
  }
  .nav ul li a:hover:after {
    width: 100%;
  }