@font-face {
    font-family: Primary Font;
    src: url("../font/CutiveMono-Regular.ttf");
}

html, body {
    font-family: Primary Font, monospace;
    color: #464646;
    background-color: #ffffff;
    border-top: 0.275rem solid #4c3dc4;
}

.portrait {
    margin-right: 5rem;
    margin-top: 0.325rem;
    margin-bottom: 1.25rem;
}

.img {
    border-radius: 7px;
    height: 20rem;
    width: auto;
}

.title {
    font-size: 1.075rem;
}

.article {
    max-width: 640px;
}

a, a:active, a:focus, a:visited {
    color: #464646;
    text-decoration: none;
}

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


.section {
    display: flex;
    flex-wrap: wrap; /* Optional. only if you want the items to wrap */
    justify-content: center; /* For horizontal alignment */
    margin-left: 25px;
    margin-right: 25px;
}


dt, dd {
    float: left;
    margin-right: 0.625rem;
}

dt {
    clear: both;
}

dl {
    width: 100%;
    display: table;
    margin: 0 0 15px;
}

.podcast-entry {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.podcast-cover {
    width: 5rem;
    height: 5rem;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.footer {
    text-align: center;
    margin-top: 1.75rem;
}


@media only screen and (max-width: 600px) {
    img {
        height: 12.5rem;
        margin-left: 4.5rem;
    }

    .podcast-cover {
        width: 3rem;
        height: 3rem;
        margin-left: 0;
    }

    h1 {
        margin-left: 1rem;
    }

}