:root {
    --base-zoom: 100%;
}

body {
    width: 100%;
    zoom: 100%;
}

		
#article-info {
    display: flex;
    align-items: center;
  padding: 10px;
  text-align: left;
  background-color: #8e0404;
  color: #0e0e0e;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  height: 80px;
}

#attention-icon {
    margin-right: 10px;
}


@media screen and (min-width: 1920px) {
    :root {
        --base-zoom: calc(100% + ((100vw - 1920px) / 19.2)); /* Adjust the factor as needed */
    }
}

body {
    zoom: var(--base-zoom);
}



.hero-figure.anime-element > * {
    border-radius: 10px;
}


/*.menu-icon {
  position: relative;
  top: 13px;
  right: 13px;
  display: inline-block;
  cursor: pointer;
  z-index: 1000; 
  transition: opacity 0.3s ease-in-out;
}

.menu-line {
  display: block;
  height: 2px;
  width: 15px;
  margin: 3px 0;
  background-color: #CCCCCC;
  transition: all 0.2s ease-in-out;
}

.menu-icon:hover .menu-line {
  transform: scale(1.2);
}

.menu-icon:hover .menu-line:first-child {
  transform-origin: top left;
  transform: rotate(45deg) translate(2px, 2px);
}

.menu-icon:hover .menu-line:nth-child(2) {
  opacity: 0;
}

.menu-icon:hover .menu-line:last-child {
  transform-origin: bottom left;
  transform: rotate(-45deg) translate(2px, -2px);
}

.menu-icon-hidden {
  opacity: 0;
}*/


.menu-icon {
  position: relative;
  top: 15px;
  right: 2px;
  display: inline-block;
  cursor: pointer;
  z-index: 1000; /* ensures the menu icon is always on top */
  transition: opacity 0.3s ease-in-out;
  /*background-color: #2f2f2f;*/ 
  border-radius: 8px; /* add 8px border radius */
}

.menu-line {
  display: block;
  height: 2px;
  width: 15px;
  margin: 3px 0;
  background-color: #8a8a8a;
  transition: all 0.2s ease-in-out;
}

.menu-icon:hover .menu-line {
  background-color: #cfcfcf;
}

.menu-icon-hidden {
  opacity: 0;
}
