* {
    font-family: 'Arima Madurai', sans-serif;
  }
  
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    display: inline-flex;
    background: #5747e1;
    color: white;
    box-shadow: 1px 3px 4px #E6E6E6;
    align-items: center;
  }
  
  .navigation {
    display: inline-flex;
    align-items: center;
    margin: 0 25px;
  }
  
  .brand {
    flex: 1;
    margin: 0 25px;
  }
  
  .menu {
    display: flex;
    list-style:none;
    margin-right: 25px;
  }
  
  .menu li a {
    color: inherit;
    text-decoration: none;
    margin: 0 15px;
  }
  
  .menu li a:hover {
    text-decoration: underline;
  }
  
  .search {
    position: relative;
    padding-bottom: 15px;
    bottom: -7px;
  }
  
  .search-input::placeholder {
    color: white;
    opacity: 0.8;
  }
  
  .search-input {
    height: 0px;
    border:none;
    position: absolute;
    left: -200px;
    visibility: hidden;
    opacity: 0;
    top: 40px;
    background: #5747e1;
    color: white;
    padding: 6px;
    font-size: 12px;
    outline: none;
    width: 220px;
    transition: 80ms all ease-in;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: none;
  }
  
  .search-button {
    background:transparent;
    color: white;
    cursor: pointer;
    font-size: 14px;
    padding-top: 4px;
  }
  
  .search-button:hover + .search-input, .search-input:hover, .search:hover .search-input {
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 9 !important;
    box-shadow: 1px 3px 4px #E6E6E6;
    height: 25px !important;
  }
  