.m-container{
    display: flex;
    background-color: rgba(0, 0, 0, 0.3);
    align-items: center;
    justify-content: center;
    position: fixed;
    pointer-events: none;
    opacity: 0;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
}

#close{
    background-color: #008AAB;
    border: 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    font-size: 14px;
    padding: 10px 25px;
}

.mo{
    background-color: darkgrey;
    width: 600px;
    max-width: 100%;
    padding: 7px 7px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    text-align: center;
}

.mo h1{
    margin: 0;
    
}
.mo p{
    color: black;
    font-size: 14px;
}

.tex{
    opacity: 0.7;
    font-size: 14px;
}

.show{
    pointer-events: auto;
    opacity: 1;
}

