@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  color: #333; /* RGB */
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  display: block;
}
a:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}

li{
  list-style: none;
}
h1{
  text-align: left;
  font-size: 24px;
  font-weight: 500;
  margin:0 0 30px 15px;
  letter-spacing: 3px;
  padding: 15px 0 20px 15px;
  border-left: solid #333 1px;
}
h2{
  font-size: 14px;
}
p{
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1.6px;
}