@import url("https://fonts.googleapis.com/css2?family=Mochiy+Pop+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
  background-color: #131313;
  color: #fff;
}

.topbar {
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
          backdrop-filter: blur(10px) saturate(180%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 50px;
  z-index: 1;
}
.topbar .actual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
}
.topbar .actual .left, .topbar .actual .right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar .actual .left .logo:first-letter {
  font-family: "Mochiy Pop One", cursive;
}
.topbar .actual .left .logo {
  font-size: 2rem;
  font-weight: 200;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}

.article {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 66%;
}
.article h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 3rem 0;
}
.article h2 {
  font-size: 1.75rem;
  margin: 4rem 0 1rem 0;
  font-weight: 600;
}
.article h2 img {
  width: 4.25rem;
  margin-left: 0.15rem;
  vertical-align: -20%;
}
.article a {
  color: #008bdb;
  text-decoration: none;
  font-weight: 600;
}
.article a:hover {
  text-decoration: underline;
}
.article span {
  font-weight: 400;
  font-size: 1rem;
}/*# sourceMappingURL=index.css.map */