#schedule-grid {
    display: grid;
    /* grid-template-columns: repeat( auto-fill, minmax(32em, 1fr) ); */
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1em;
    align-content: start;
    width: 100%;
    grid-template-rows: auto repeat(71, auto);
}

/* #theater-heading {
    grid-row: 1;
    grid-column: 1;
}

#hangar-heading {
    grid-row: 1;
    grid-column: 2;
}

#demo-heading {
    grid-row: 1;
    grid-column: 3;
}

.announce {
    grid-column: 1 / 4;
    text-align: center;
    font-size: 1.6em;
}

.theater {
    grid-column: 1;
}

.hangar {
    grid-column: 2;
}

.demo {
    grid-column: 3;
}

@media only screen and (max-width: 640px) {
    #schedule-grid {
        grid-template-columns: 1fr;
    }

    .hangar {
        grid-column: 1;
    }

    .demo {
        grid-column: 1;
    }

    #hangar-heading {
        grid-column: 1;
    }

    #demo-heading {
        grid-column: 1;
    }

    .announce {
        grid-column: 1;
    }

}

.room {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    align-content: start;
}

.timetable {
    display: grid;
    width: 100%;
    grid-template-rows: auto repeat(54, 1fr);
}

.event {
    background-color: var(--main-color);
    height: 100%;
    width: 100%;
    padding: 0.5em;
}

.event-time {
    font-family: "VCR-mono";
    font-weight: normal;
    text-transform: uppercase;
    font-size: 1.8em;
    color: var(--bg-color);
    padding: 0 0 0.5em 0;
    margin: 0;
}


.event-artist {
    font-size: 1.6em;
    font-weight: bold;
    color: var(--bg-color);
    padding: 0 0 0.25em 0;
}

.event-description {
    font-size: 1.2em;
    color: var(--bg-color);
    text-align: justify;
} */

body {
    --time-size: 1.66em;
}


.grid-banner {
    display: grid;
    grid-template-columns: auto 1fr;
    font-size: var(--time-size);
    text-align: left;
    gap: 0.1em;
    padding: 0 0 0.25em;
}

.grid-plate {
    color: #000;
    background-color: #fff;
    padding: 0.33em;
    line-height: 125%;
}


.grid-time {
    font-family: "VCR-mono";
    font-weight: normal;
    text-transform: uppercase;
}

.grid-msg {
    text-transform: uppercase;
    width: 100%;
}

/* .grid-sched {
    display: grid;
    grid-template-columns: 100% 100%;
    width: 100%;
    max-width: 100%;
    font-size: 1.66em;
    overflow-x: auto;
} */

.flex-schedule {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-width: 100%;
    gap: 0.5em;
}

@media only screen and (max-width: 42em) {
    .flex-schedule {
        flex-direction: column;
    }
}

.flex-span {
    width: 100%;
}

.grid-item {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.5em;
    border: 1px solid white;
    margin: 0 0 0.5em 0;
    justify-content: left;
}

.flex-room {
    width: 100%;
    font-size: calc(var(--time-size) * 1.5);
    background-color: #fff;
    color: #000;
    font-family: "VCR-mono";
    font-weight: normal;
    text-transform: uppercase;
    padding: 0.25em;
    text-align: center;
    margin: 0 0 0.25em 0;
}

.lunch {
    font-size: 1.66em;
}

.time {
    width: 100%;
    font-size: var(--time-size);
    padding: 0.25em;
    font-family: "VCR-mono";
    font-weight: normal;
    text-transform: uppercase;
    background-color: #fff;
    color: #000;
}

.description {
    width: 100%;
    padding: 0.25em;
}

.title {
    width: 100%;
    font-size: calc(var(--time-size) * 0.9);
}

.name {
    grid-column: 1 / 3;
    width: 100%;
    line-height: 125%;
    font-size: var(--time-size);
    font-weight: bold;
}

.music {
    background-color: #fff;
    width: 100%;
}
