/*PERSONAL formatting*/

.video-card {
    display: flex;
    width: 1000px;
    max-width: 100%;
}

.video-container {
    width: 600px;
    height: 450px;
    flex-shrink: 0;
}

.video-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

.transcript {
    margin-left: 15px;
    padding-right: 10px;
    width: 400px;
    height: 450px;
    overflow-y: auto;
}

.game-card {
    display: flex;
    width: 100%;
    max-height: max-content;
    padding-bottom: 5px;
    background: var(--menu-color);
    color: var(--card-bkgrd-color);
}

#output {
    width: 100%;
    height: 500px;
    padding: 10px;
    object-fit: cover;
    text-decoration: none;
    overflow-y: auto;
}

#input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    background: var(--menu-color);
    color: var(--card-bkgrd-color);
}


@media (max-width: 999px) {
    .video-card {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-height: none;
    }

    .video-container {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .video-container iframe {
        width: 100%;
        height: 100%;
    }

    .transcript {
        box-sizing: border-box;
        margin-left: 0;
        padding: 15px;
        width: 100%;
        height: auto;
        max-height: 450px;
        overflow-y: auto;
    }
}