body{
  font-family: 'Noto Sans JP', sans-serif;
  background-color: rgb(0, 0, 0);
  zoom: 1; 
  color: #fff;
}

.okasi {
  margin-top: 100px;
}

/* Menu */
section#menu-ver {
  background: linear-gradient(to right, rgb(36, 30, 30), rgba(0, 0, 0, 0.5));
  padding: 6px 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
}

section#menu-ver a {
  display: inline-flex;
  align-items: center;
  font-size: 30px;
  color: white;
  text-decoration: none;
  padding: 0px 20px;
  margin-right: 12px;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

section#menu-ver a:hover {
  background-color: rgba(192, 184, 184, 0.5);
  cursor: pointer;
}