/* If the screen size is 601px wide or more, set the font-size of <div> to 80px */
@media screen and (min-width: 801px) {
    #title-font {
        font-size: 50px;
    }

    #title-summary {
        font-size: 5000px;
    }
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 800px) {
    #title-font {
        font-size: 40px;
    }

    #title-summary {
        font-size: 30px;
    }
}

.menu-item {
    background: linear-gradient(90deg, #d1dd51 0%, #d9ce49 100%);
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Arial Black", Gadget, sans-serif;
    color: #000000;
    font-size: 24px;
    text-align: center;
    border-radius: 0px;
    margin-right: 15px;

    /* display: inline; */
    padding-bottom: 0.4rem;
    padding-top: 0.4rem;
    padding-right: 0.4rem;
    padding-left: 0.4rem;

    /* margin-right: 36px;
    margin-left: -41px;
    margin-top: 23px; */
}

.menu-item:hover {
    color: #a81717;
}

/* Legacy footer-menu class - deprecated, now using .footer-link */
.footer-menu {
    font-size: 17px;
    color: #ffffff;
    display: inline-block;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

h1 {
}

h2 {
    font-size: 4em;
}

h3 {
    font-size: .9em;
}

h4 {
    font-size: .7em;
    padding-bottom: 8px;
}

h5 {
    font-size: .6em;
}

p {
    font-size: .5;
}

.logo {
    width: calc(100vw/3.2);
}

.episode-description {
    margin-top: 10px;
    font-size: 2.056vmin;
}

.episode {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin: 30px;
}

a.contact:hover {
    color: #ffcdcd;
}

.part_title {
    font-size: 2.187vmax;
    color: #ffffff;
}

.roast-feat {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

.trans-back {
    padding-top: 32px;
    margin-top: -8px;
    background-color: #191919;
}

.shadow {
    background-image: url('assets/img/sid-caesar-roast/torn-paper.png');
    background-position: center bottom;
}
/* Basic styling for the glow-container */
.glow-container {
    width:100%;
    border-radius: 2px;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.glow-container-white {
   box-shadow: 0 0 15px rgba(225, 226, 205, 0.6); /* Adjust glow color and intensity */
    background-color: rgba(240, 250, 1, 0.15); /* Light yellow tint */
}
/* Glow effect on hover for the glow-container */
.glow-container:hover {
    box-shadow: 0 0 15px rgba(240, 250, 1, 0.6); /* Adjust glow color and intensity */
    background-color: rgba(240, 250, 1, 0.15); /* Light yellow tint */
}

/* Audio-specific styling within glow-container */
.glow-container audio {
    width: 100%; /* Make audio fill the container width */
    margin-top: 10px;
    border-radius: 5px;
    transition: box-shadow 0.3s ease;
}

.glow-container:hover audio {
    box-shadow: 0px 0px 10px rgba(217, 207, 74, 0.5); /* Glow for audio on hover */
}


