html {
    font-size: 19.2px;
    overflow: unset;
  }
  
  html body {
    all: initial;
  }
  
  html body .total-contain {
    all: initial;
  }
  
  .notework-content {
    width: 100%;
    min-height: calc(100vh);
  }
  
  .notework-content .article-notework {
    width: 100%;
    display: flex;
    padding: 2rem;
  }
  
  .notework-content .article-notework .overview {
    width: 90%;
    margin: 0 auto;
    border-radius: 1vw;
    padding: 2rem;
    overflow: hidden;
    transition: all 1.5s ease;
    opacity: 0;
  }
  
  .notework-content .article-notework .overview .notework-block {
    margin-bottom: 1.2rem;
    width: 100%;
    box-shadow: 5px 5px 10px #e0dede;
    border: 1px solid #eae7e7;
    background-image: linear-gradient(to right, #fef2ec, #feeef1, #e7f6f6, #eef8f2);
    border-radius: 1vw;
    height: 7rem;
    font-size: 1.5vw;
    font-family: NavTitle;
    line-height: 3vw;
    cursor: pointer;
    transition: all .25s ease-in;
  }
  
  .notework-content .article-notework .overview .notework-block .notework-time {
    margin: 1rem 0 0 1rem;
  }
  
  .notework-content .article-notework .overview .notework-block .notework-experiment {
    margin-left: 1rem;
  }
  
  .notework-content .article-notework .overview .notework-block:hover {
    transform: translateZ(100px);
    box-shadow: 10px 10px 20px #e0dede;
  }
  