.atkinson-hyperlegible-regular {
    font-family: "Atkinson Hyperlegible", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .atkinson-hyperlegible-bold {
    font-family: "Atkinson Hyperlegible", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .atkinson-hyperlegible-regular-italic {
    font-family: "Atkinson Hyperlegible", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .atkinson-hyperlegible-bold-italic {
    font-family: "Atkinson Hyperlegible", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  

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

body {
    font-family: "Atkinson Hyperlegible", sans-serif;
    line-height: 1.4;
    color: #000;
    background-color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 15px;
}

header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

h2 {
    font-size: 1.6rem;
    margin: 20px 0 12px 0;
    padding-bottom: 8px;
}

h3 {
    font-size: 1.2rem;
    margin: 12px 0 6px 0;
}

p {
    margin-bottom: 10px;
}

ul {
    margin-left: 20px;
    margin-bottom: 10px;
}

a {
    color: #000;
    text-decoration: underline;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
}

a:hover {
    text-decoration: none;
    color: #fff;
}

a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    z-index: -1;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.3s ease;
}

a:hover::before {
    clip-path: inset(0 0% 0 0);
}

.course-numbers {
    margin: 8px 0;
}

.course-number {
    margin-bottom: 3px;
    padding: 6px;
    background-color: #f5f5f5;
}

.course-details {
    margin: 8px 0;
}

.detail-item {
    margin-bottom: 8px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0;
}

.schedule-table th,
.schedule-table td {
    padding: 8px;
    text-align: left;
}

.schedule-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.projects {
    margin: 12px 0;
}

.project {
    margin-bottom: 12px;

}

.highlight {
    background-color: #f5f5f5;
    padding: 12px;
    margin: 15px 0;
}

iframe {
    width: 100%;
    height: 600px;
    border: none;
    margin: 12px 0;
} 

footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.copyright, .colophon {
    margin: 0;
}

.copyright p, .colophon p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Course Slides Styling */
.course-slides {
    margin: 12px 0;
}

.slide-item {
    margin-bottom: 20px;
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
    transition: all 0.3s ease;
}

.slide-item h3 {
    color: #000;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.slide-item p {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.slide-item p:last-child {
    margin-bottom: 0;
}

.slide-link {
    display: inline-block;
    padding: 8px 12px;
    background-color: #000;
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.slide-link:hover {
    background-color: #333;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.slide-link:hover::before {
    display: none;
}