.top-anime {
  width: 100%;
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--wrap-top-anime-bg);
  border-top: var(--border);
  border-bottom: var(--border);
}

.recommend {
  width: 100%;
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.anime-wrap {
  border-radius: var(--radius);
  border: var(--border);
  background: var(--anime-wrap-bg);
}


/*pagination*/
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  width: 250px;
  margin: 4rem 0;
  
  .pagination-btn {
    height: 3rem;
    width: 3rem;
    border-radius: var(--radius);
    background: var(--pagination-btn-bg);
    
    svg {
      width: 80%;
      height: 80%;
      margin: 10%;
    }
  }
}

