@charset "UTF-8";

body{
  margin: 0;
  padding: 0;
  border: none;
  color: #331008;
  font-family: "Kosugi Maru", sans-serif;
  text-align: center;
}

a {
	color: #331008;
	font-size: 12px;
  font-weight: 600;
  line-height: 12px;
  opacity: 1;
  transition: 0.6s;
}

a:hover {
  opacity: 0.6;
  text-decoration: none;
}

nav ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav ul li{
  padding: 0 5px;
  border-right : #331008 1px solid;
}

nav ul li:last-of-type{
  border-right : none;
}

nav ul li a{
  display: flex;
  align-items: center;
  justify-content: center;
}