.container {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.big-h1 {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 2.5rem;
  padding-bottom: 0.5rem;
  position: relative;
}
.big-h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, #3b82f6, #ec4899);
  border-radius: 9999px;
}

.calendar {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.month-section {
  width: 100%;
}
.month-section p {
  margin-right: auto;
  margin-left: 1rem;
  font-size: 0.875rem;
  color: rgb(255, 255, 255);
}
.month-section:nth-child(even) .month-header {
  flex-direction: row-reverse;
}
.month-section:nth-child(even) .month-title {
  padding-right: 0;
  padding-left: 1rem;
}
.month-section:nth-child(even) .course-content {
  flex-direction: row-reverse;
}
.month-section:nth-child(even) .course-content .course-title {
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.644);
}

.month-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  width: 100%;
}

.month-title {
  font-size: 1.75rem;
  font-weight: bold;
  padding-right: 1rem;
}

.month-divider {
  height: 0.25rem;
  flex: 1;
  border-radius: 9999px;
}

.courses {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.course {
  position: relative;
  height: 5rem;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.course:hover {
  text-decoration: none;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.course-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
}
.course-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.course-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
.course-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0 1.5rem;
}
.course-title {
  font-weight: 500;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.course-date {
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}
.course-date:hover {
  transform: scale(1.05);
}

.month-section:nth-child(1) .month-title {
  background-image: linear-gradient(to right, #d946ef, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.month-section:nth-child(1) .month-divider {
  background-image: linear-gradient(to right, #d946ef, transparent);
}
.month-section:nth-child(1) .course {
  border: 1px solid rgba(217, 70, 239, 0.3);
}
.month-section:nth-child(1) .course .course-gradient {
  background-image: linear-gradient(to right, rgba(217, 70, 239, 0.7), transparent);
}
.month-section:nth-child(1) .course .course-date {
  background-color: rgba(217, 70, 239, 0.2);
  border: 1px solid rgba(217, 70, 239, 0.3);
}

.month-section:nth-child(2) .month-title {
  background-image: linear-gradient(to left, #f59e0b, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.month-section:nth-child(2) .month-divider {
  background-image: linear-gradient(to left, #f59e0b, transparent);
}
.month-section:nth-child(2) .course {
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.month-section:nth-child(2) .course .course-gradient {
  background-image: linear-gradient(to left, rgba(245, 158, 11, 0.7), transparent);
}
.month-section:nth-child(2) .course .course-date {
  background-color: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.month-section:nth-child(3) .month-title {
  background-image: linear-gradient(to right, #10b981, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.month-section:nth-child(3) .month-divider {
  background-image: linear-gradient(to right, #10b981, transparent);
}
.month-section:nth-child(3) .course {
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.month-section:nth-child(3) .course .course-gradient {
  background-image: linear-gradient(to right, rgba(16, 185, 129, 0.7), transparent);
}
.month-section:nth-child(3) .course .course-date {
  background-color: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.month-section:nth-child(4) .month-title {
  background-image: linear-gradient(to left, #06b6d4, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.month-section:nth-child(4) .month-divider {
  background-image: linear-gradient(to left, #06b6d4, transparent);
}
.month-section:nth-child(4) .course {
  border: 1px solid rgba(6, 182, 212, 0.3);
}
.month-section:nth-child(4) .course .course-gradient {
  background-image: linear-gradient(to left, rgba(6, 182, 212, 0.7), transparent);
}
.month-section:nth-child(4) .course .course-date {
  background-color: rgba(6, 182, 212, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.month-section:nth-child(5) .month-title {
  background-image: linear-gradient(to right, #f43f5e, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.month-section:nth-child(5) .month-divider {
  background-image: linear-gradient(to right, #f43f5e, transparent);
}
.month-section:nth-child(5) .course {
  border: 1px solid rgba(244, 63, 94, 0.3);
}
.month-section:nth-child(5) .course .course-gradient {
  background-image: linear-gradient(to right, rgba(244, 63, 94, 0.7), transparent);
}
.month-section:nth-child(5) .course .course-date {
  background-color: rgba(244, 63, 94, 0.2);
  border: 1px solid rgba(244, 63, 94, 0.3);
}

.month-section:nth-child(6) .month-title {
  background-image: linear-gradient(to left, #3b82f6, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.month-section:nth-child(6) .month-divider {
  background-image: linear-gradient(to left, #3b82f6, transparent);
}
.month-section:nth-child(6) .course {
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.month-section:nth-child(6) .course .course-gradient {
  background-image: linear-gradient(to left, rgba(59, 130, 246, 0.7), transparent);
}
.month-section:nth-child(6) .course .course-date {
  background-color: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.month-section:nth-child(7) .month-title {
  background-image: linear-gradient(to right, #f59e0b, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.month-section:nth-child(7) .month-divider {
  background-image: linear-gradient(to right, #f59e0b, transparent);
}
.month-section:nth-child(7) .course {
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.month-section:nth-child(7) .course .course-gradient {
  background-image: linear-gradient(to right, rgba(245, 158, 11, 0.7), transparent);
}
.month-section:nth-child(7) .course .course-date {
  background-color: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.month-section:nth-child(8) .month-title {
  background-image: linear-gradient(to left, #6366f1, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.month-section:nth-child(8) .month-divider {
  background-image: linear-gradient(to left, #6366f1, transparent);
}
.month-section:nth-child(8) .course {
  border: 1px solid rgba(99, 102, 241, 0.3);
}
.month-section:nth-child(8) .course .course-gradient {
  background-image: linear-gradient(to left, rgba(99, 102, 241, 0.7), transparent);
}
.month-section:nth-child(8) .course .course-date {
  background-color: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.month-section:nth-child(9) .month-title {
  background-image: linear-gradient(to right, #9f3cfb, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.month-section:nth-child(9) .month-divider {
  background-image: linear-gradient(to right, #9f3cfb, transparent);
}
.month-section:nth-child(9) .course {
  border: 1px solid rgba(159, 60, 251, 0.3);
}
.month-section:nth-child(9) .course .course-gradient {
  background-image: linear-gradient(to right, rgba(159, 60, 251, 0.7), transparent);
}
.month-section:nth-child(9) .course .course-date {
  background-color: rgba(159, 60, 251, 0.2);
  border: 1px solid rgba(159, 60, 251, 0.3);
}

.month-section:nth-child(10) .month-title {
  background-image: linear-gradient(to left, #06b6d4, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.month-section:nth-child(10) .month-divider {
  background-image: linear-gradient(to left, #06b6d4, transparent);
}
.month-section:nth-child(10) .course {
  border: 1px solid rgba(6, 182, 212, 0.3);
}
.month-section:nth-child(10) .course .course-gradient {
  background-image: linear-gradient(to left, rgba(6, 182, 212, 0.7), transparent);
}
.month-section:nth-child(10) .course .course-date {
  background-color: rgba(6, 182, 212, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.month-section:nth-child(11) .month-title {
  background-image: linear-gradient(to right, #14b8a6, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.month-section:nth-child(11) .month-divider {
  background-image: linear-gradient(to right, #14b8a6, transparent);
}
.month-section:nth-child(11) .course {
  border: 1px solid rgba(20, 184, 166, 0.3);
}
.month-section:nth-child(11) .course .course-gradient {
  background-image: linear-gradient(to right, rgba(20, 184, 166, 0.7), transparent);
}
.month-section:nth-child(11) .course .course-date {
  background-color: rgba(20, 184, 166, 0.2);
  border: 1px solid rgba(20, 184, 166, 0.3);
}

.month-section:nth-child(12) .month-title {
  background-image: linear-gradient(to left, #8b5cf6, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.month-section:nth-child(12) .month-divider {
  background-image: linear-gradient(to left, #8b5cf6, transparent);
}
.month-section:nth-child(12) .course {
  border: 1px solid rgba(139, 92, 246, 0.3);
}
.month-section:nth-child(12) .course .course-gradient {
  background-image: linear-gradient(to left, rgba(139, 92, 246, 0.7), transparent);
}
.month-section:nth-child(12) .course .course-date {
  background-color: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

@media (max-width: 768px) {
  .course {
    height: 4.5rem;
  }
  .course-content {
    padding: 0 1rem;
  }
  .month-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  h1::after {
    width: 80px;
  }
  .course-title {
    font-size: 0.9rem;
  }
  .course-date {
    font-size: 0.75rem;
  }
}/*# sourceMappingURL=calendar.css.map */