.custom {

    max-width: 130px !important;
    min-width: 130px !important;
}

body {
    background-color: transparent;
}

p {
    color: #000000;
    font-size: 42px;
    line-height: 35px;
    margin-bottom: auto;
}

.textBox {
    height: 40px;
    width: 300px;

}


body {
    display: flex;
    /* Center according to the main axis */
    justify-content: center;
    /* Center according to the secondary axis */
    align-items: center;
}

button {
    color: #000;
    background-color: #999;
    margin-top: 20px;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    background: url("https://fontmeme.com/permalink/220620/002e50991afc8c70dc4504b5450d08f4.png");
    background-size: auto;
    background-repeat: no-repeat;
    visibility: hidden;
    /* Hidden by default. Visible on click */
    min-width: 250px;
    /* Set a default minimum width */
    margin-left: -125px;
    /* Divide value of min-width by 2 */

    /* Black background color */
    color: #4D4DFF;
    /* White text color */
    text-align: center;
    /* Centered text */
    border-radius: 2px;
    /* Rounded borders */
    padding: 16px;
    /* Padding */
    position: fixed;
    /* Sit on top of the screen */
    z-index: 1;
    /* Add a z-index if needed */
    left: 50%;
    /* Center the snackbar */
    bottom: 30px;
    /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
.show {
    visibility: visible !important;
    /* Show the snackbar */

    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}