@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


body {
    background-color: #FFD90F;
    font-family: "Inter", 'Source Sans Pro', sans-serif;
    color: #31333F;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    display: flex;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
}

.episode-box {
    background-color: #f0f0f0;
    border: 1px solid #000;
    border-radius: 9px;
    max-width: 700px;
    width: 100%;
    padding: 1rem;
    margin: 3rem 1rem 0 1rem;
    box-sizing: border-box;
}

.episode-box img {
    width: 100%;
    height: auto;
    display: block;
    margin: 1rem 0;
}

.info-row {
    display: flex;
    justify-content: space-between;
}

.left-column {
    display: flex;
    flex-direction: column;
}

.right-column {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}


footer {
    text-align: center;
    padding: 1rem;
    margin-top: auto;
}
