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

body {
    font-family: 'Space Mono', monospace;
    background: #fff;
    color: #111;
    line-height: 1.5;
    padding: 2rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.title {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #fe019a;
}

nav a {
    text-decoration: none;
    color: #111;
    margin-left: 1.5rem;
    font-size: 0.9rem;
}

main {
    max-width: 750px;
    margin: auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.episode-grid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.episode {
    display: flex;
    flex-direction: column;
}

.episode h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.episode p {
    font-size: 0.9rem;
    color: #555;
} 

a {
    color: #05f;
    text-decoration: none;
    cursor: pointer !important
}

section a {
    color: #111;
}