@media only screen and (max-device-width: 1000px) {
    .pc {
        display: none;
    }

    .mobile {
        display: block;
    }

    .main-container {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-position: center center;
        background-size: 100% auto;
        padding: 0;
    }

    .radio-list {
        padding: 30px 30px 10px 30px;
        display: flex;
    }

    .mobile-control,
    .radio-station-text {
        display: inline-block !important;
    }

    .radio-station {
        justify-content: space-between;
    }

    .radio-station-text {
        font-size: 100px;
        font-weight: bolder;
        font-variant : small-caps;
    }

    .station-container {
        position: absolute;
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        left: calc(50vw - 115px);
        bottom: 6vh;
    }

    .clock {
        width: 100%;
        font-size: 10em;
        text-align: center;
        margin-top: 1.5em;
    }

    .weather-container {
        font-size: 5em;
    }

    .player-bi {
        object-fit: contain;
        background: #0f0e1e;
    }
}