.cr {
  background-color: rgba(255, 255, 0, 0.401);
}

body #searchBox .searchPanel {
  height: 4vw;
  gap: 1vw;
}
body #searchBox .searchPanel input {
  border: 3px solid var(--main-text-light-color);
  font-size: 2.5vw;
  font-weight: 100;
  padding: 0 0.5vw;
  background-color: rgba(255, 255, 255, 0.61);
}
body #searchBox .searchPanel button {
  border: none;
  cursor: pointer;
  font-size: 2.5vw;
  font-weight: 400;
}
body .social {
  justify-content: space-between;
  height: calc(1em + 0.3vw);
  font-size: calc(0.8em + 0.3vw);
}
body .social .links {
  display: flex;
  justify-content: flex-start;
  gap: 0 0.5em;
}
body .social .links a {
  height: 100%;
}
body .social .links a svg {
  height: 90%;
  aspect-ratio: 1/1;
}
body .social .links a svg:hover {
  fill: var(--main-color);
}
body .social .search {
  display: flex;
  justify-content: flex-end;
}
body .social .search button {
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
body .social .search button svg {
  width: 13%;
  height: auto;
}
body .nav {
  display: flex;
  margin-top: 1em;
  justify-content: center;
}
body .nav div {
  width: 100%;
}
body .nav div ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  padding-bottom: 1.5vh;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4078431373);
}
body .nav div ul li {
  margin: 0 0.5vh;
  font-size: calc(1em + 0.3vw);
  padding-bottom: 2px;
  border-bottom: 3px solid transparent;
  transition: border 0.5s;
  text-wrap: nowrap;
}
body .nav div ul li:hover {
  border-bottom: 3px solid var(--main-color);
}
body .nav div ul li a {
  color: #000;
  font-weight: 400;
  text-decoration: none;
}
body .nav div ul li a:hover {
  color: var(--main-color);
  text-decoration: none;
}
body .blog {
  display: flex;
}
body .blog .blog-content {
  aspect-ratio: 16/9;
  overflow: hidden;
}
body .blog .blog-content a {
  display: grid;
  position: relative;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--main-text-light-color);
}
body .blog .blog-content a img {
  display: flex;
  position: absolute;
  width: 100%;
  height: auto;
  filter: saturate(1);
  transition: filter 1s;
}
body .blog .blog-content a img:hover {
  filter: saturate(0.5);
}
body .blog .blog-content a span {
  display: flex;
  position: absolute;
  width: 100%;
  padding: 0 calc(0.5em + 0.3vw);
  left: 0;
  bottom: calc(0.5em + 0.3vw);
  font-size: calc(1.5em + 0.5vw);
  font-weight: 500;
  line-height: calc(0.8em + 0.4vw);
  text-shadow: 0 0 3px black;
}
body .blog .blog-content a span:hover {
  color: var(--main-text-light-color-hover);
}
body .blog .blog-content a .mansetfont {
  font-size: var(--mansetfont);
}
body .footer {
  padding: 2em 0;
}/*# sourceMappingURL=mainstyle.css.map */