@import "https://fonts.googleapis.com/css2?family=Hedvig+Letters+Serif:opsz@12..24&family=Noto+Sans+JP:wght@300;400&family=Oswald:wght@300&display=swap";
body {
  font-family: noto sans jp, sans-serif;
  padding: 0 2%;
  margin: 0;
  background-color: #000;
  color: #fff;
}
nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background-color: #000;
  color: #fff;
  z-index: 100000;
}
nav .profile {
  display: flex;
  align-items: center;
}
nav a {
  text-decoration: none;
}
nav .profile img {
  width: 40px;
  height: 40px;
  border-radius: 50px;
}
nav .profile h1 {
  margin-left: 10px;
  font-size: 20;
  color: #fff;
}
nav ul {
  display: flex;
  list-style-type: none;
}
nav ul li {
  margin-left: 20px;
  cursor: pointer;
  border-bottom: 2px solid #000;
  color: #fff;
  text-decoration: none;
}
nav ul li:not(#contact):hover {
  border-bottom-color: #000;
}
#contact {
  position: relative;
  padding: 3px;
  font-weight: 700;
  color: #000;
  background-color: #c00404;
  border-radius: 6px;
}
#contact:hover {
  background-color: #000;
  color: #c00404;
}
.modal {
  display: None;
}
@media screen and (max-width: 700px) {
  .modal {
    display: block;
  }
  nav {
    display: none;
  }
  .page-content {
    display: none;
  }
  footer {
    display: none;
  }
}
