@media screen and (min-width: 300px) and (max-width: 1000px) {
    .main-container {
        display: flex;

        margin-top: 10px;
        margin-bottom: 10px;
        margin-left: auto;
        margin-right: auto;

        flex-direction: column;

        width: 90%;
        /* grid-auto-rows: auto; */
        row-gap: 10px;

        justify-content: center;
        align-content: center;

        /* justify-items: center; */

        /* border-style: solid; */

        user-select: none;
    }
}