@media (width <=480px) {
    #body-wrapper {
        max-width: 480px;
        width: 100%;
        padding: 0;
        gap: 0;
        grid-template-columns: 2fr 1fr;
        grid-template-areas:
            "nav header"
            "content content"
            "footer footer";
        font-size: 16px;
        min-height: 500px;
    }

    .nav,
    .score,
    .player,
    .results {
        padding: 10px 0;
    }

    .nav {
        flex-direction: column;
        height: fit-content;
        padding-bottom: 0;
    }

    .round-buttons {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
        margin: 0;
        padding: 0;
        margin-top: 10px;
        height: fit-content;
        min-height: 40px;
    }

    .round-button {
        padding: 5px 10px;
        margin: 0;
        height: fit-content;
        font-size: 20px;
    }

    .mobile-round-label {
        margin: 0;
    }

    .player>* {
        max-height: 420px;
    }

    #phone-items-wrapper {
        justify-content: space-around;
        padding: 0 10px;
    }

    #phone-person {
        transform: scale(0.8);
        top: 15%;
    }

    #transcript-container {
        font-size: 24px;
    }

    .results {
        margin: auto;
        padding-bottom: 20px;
    }

    .results-inner {
        width: 250px;
    }

    .result-button {
        margin: 0 15px;
    }

    .score {
        width: fit-content;
        justify-self: end;
        margin: 0;
        padding-left: 5px;
    }

    .score p {
        white-space: nowrap;
    }

    .score-counter {
        font-size: 24px;
    }

    .final-score {
        width: fit-content;
        padding: 10px 20px;
        margin-left: 10px;
        justify-self: center;
    }
}