.modal {
    display: none;
    position: fixed; 
    z-index: 10000;
    padding-top: 10px;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.modal-content {
    background-color: rgba(0,0,0,0.70);
	color:black;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    font-size: 20pt !important;
}

.close {
    color: #f07a7a;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
button {
	
    background-color: Transparent;
    background-repeat:no-repeat;
    border: none;
    cursor:pointer;
    overflow: hidden;
    outline:none;
    display: inline-block;
    color: #FFF;
    text-decoration: none;
    font-size: 14pt !important;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}


.container {
  position: relative;
  text-align: center;
  color: white;
}
.centered {
  position: absolute;
  top: 84%;
  left: 38%;
  transform: translate(-50%, -50%);
}