@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

ul li a{
  color: #561B8B;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
}

a{
  text-decoration: none;
}

ul{
  display: flex;
  justify-content: flex-end;
  list-style: none;
}

li{
  display: inline;
  padding: 10px;
}

#home{
  margin-right: auto;
}

#home:hover{
  color: #fff;
  background-color: #561B8B;
  padding: 2px;
}

a:hover{
  color: #fff;
  background-color: #561B8B;
  padding: 2px;
}

@media only screen and (max-width: 768px) {
  ul{
    flex-direction: column;
    align-items: center;
  }

  #home{
    margin-right: 0;
  }
  
}
