/* Media queries  */

@media only screen and (max-width: 768px) {
    .custom-container {
        flex-direction: column;
    }

    .buttons {
        flex-direction: column;
        justify-content: center;
    }

    #message_img {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .paragraph-container {
        text-align: center;
    }

    #message img {
        width: 100% !important;
    }

    #footer {
        text-align: center;
    }

    #content_para {
        text-align: center;
    }

    .comming_soon {
        width: 100% !important;
        padding: 0;
    }
}

