* {
    margin: 0;
    box-sizing: border-box;
  }
  
  html {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
      "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #02343F;
  }
  
  body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    background-color: #DCE2F0;
  }
  
  body::after {
    content: "@yejinc";
    display: block;
    margin-top: 50px;
    color: #331B3F;
    font-size: 12px;
    font-weight: 600;
  }
  
  /* Breadcrumb */
  
  .breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 56px;
    font-size: 1.125rem;
    color: #0366d6;
  }
  
  .breadcrumb::before {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    margin-right: 4px;
    background-color: transparent;
    background-position: center center;
    background-size: contain;
    background-image: url("./assets/moon.svg");
    background-repeat: no-repeat;
  }
  
  .breadcrumb a {
    color: inherit;
    text-decoration: none;
  }
  
  .breadcrumb a:hover {
    text-decoration: underline;
  }
  
  .breadcrumb a:first-child::after {
    content: "/";
    padding: 0 4px 0 8px;
    color: #586069;
  }
  
  /* Pagination */
  
  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    background-color: #fff;
    border: 1px solid #e1e4e8;
  }
  
  .pagination a,
  .pagination button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #0366d6;
    text-decoration: none;
  }
  
  .pagination > a:first-child {
    border-radius: 3px 0 0 3px;
  }
  
  .pagination > a:last-child {
    border-radius: 0 3px 3px 0;
  }
  
  .pagination ol button {
    background-color: #fff;
    border: none;
  }
  
  .pagination ol {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    list-style-type: none;
    background-color: #fff;
  }
  
  .pagination li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 32px;
    border-right: 1px solid #e1e4e8;
    font-size: 13px;
    font-weight: 500;
    color: #0366d6;
  }
  
  .pagination li.disabled {
    background-color: #fafbfc;
  }
  
  .pagination li.current-page {
    border-color: #0366d6;
    background-color: #0366d6;
  }
  
  .pagination li.current-page a {
    color: #fff;
  }
  
  .pagination *[disabled],
  .pagination .disabled {
    color: #d1d5da;
    background-color: #fafbfc;
  }