@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  padding: 1rem;
  background-color: #fafafa;
  min-height: 100vh;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-direction: column;
}

.page-title {
  position: relative;
  text-align: center;
  font-size: 2rem;
  color: #4338ca;
  padding-bottom: 0.75rem;
}

.page-title::after {
  content: "";
  position: absolute;
  width: 5rem;
  height: 0.25rem;
  border-radius: 0.25rem;
  background-color: #4338ca;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}

.works-sections {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.week-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.week-list {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.week-list li a {
  color: #000;
  font-size: 1rem;
  text-decoration: none;
}

.week-list li a:hover {
  color: #4338ca;
}

.week-list li a span {
  color: #4338ca;
  padding-right: 4px;
}
