
@font-face {
        font-family: PixelifySans;
        src: url('fonts/PixelifySans-VariableFont_wght.ttf');
    }

html {
        font-family:PixelifySans;
    }



a {
  text-decoration: none;
  color: #5889ef;
  font-weight: 700;
  position: relative;
}

a::before {
  content: '';
  background-color: #fdf818;
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 8px;
  z-index: -1;
  transition: all .3s ease-in-out;
}

a:hover::before {
  bottom: 0;
  height: 100%;
}


