@media (max-width: 512px) {
    body {
        overflow: hidden;
    }

    .unsupported-container {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.75);
        z-index: 9999;
        justify-content: center;
        align-items: center;
        backdrop-filter: grayscale(80%);
    }
    
    .unsupported-text {
        font-family: "Inter", sans-serif;
        display: block;
        color: rgb(210, 210, 210);
        font-size: 18px;
        text-align: center;
        max-width: 512px;
        padding: 20px;
    }

    #search-container {
        display: none;
    }
}