/*turns the mobile warning invisible (big boss) unless you're viewport is smol */
@media screen and (max-width: 480px) {
    #mobile {
        display: block;
        border: red solid 2px;
        text-align: center;

    }

    #mobile h2 {
        margin-top: 0px;
        margin-bottom: 4px;
        padding: 10px;
        padding-left: auto;
        background-color: red;
        color: white;

    }

    #mobile p {
        padding: .5em;
    }
}