body{
	background: white;
	
	font-family: "Inter var experimental", "Inter var", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue";
	padding-top: 20px;
}
ul {
    text-align: center;
    padding-inline-start: 0px;
  }
  ul li {
    list-style:none;
    font-size: 18px;
    padding-bottom: 10px;
  }
  
  ul li a {
    position:relative;
    display: block;
    
    
    padding: 10px 20px;
    padding-inline-start: 0px;
    text-decoration: none;
    color: #213547;
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: 0.5s;
    z-index: 1;
  }
  ul li a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 2px solid #262626;
    border-bottom: 2px solid #262626;
    transform: scaleY(2);
    opacity: 0;
    transition: 0.3s;
  }
  ul li a:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #262626;
    transform: scale(0);
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
  }
  ul li a:hover {
    color: #fff;
  }
  ul li a:hover:before {
    transform: scaleY(1);
    opacity: 1;
  }
  ul li a:hover:after {
    transform: scaleY(1);
    opacity: 1;
  }