/* CSS Document */

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: hidden; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto; /* 5% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 90%; /* Could be more or less, depending on screen size */
	max-width: 530px;
	text-align: center; /* Center all text */
}

.modal-content a {
    color: blueviolet;
    text-decoration: none;
    /* font-style: italic; */
    font-size: x-small;
}

.modal-content h2 {
	color: cornflowerblue;
}

.modal-content h3 {
	color: deepskyblue;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

a.button {
    font-size: 18px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
	border-radius: 5px;
	font-style: normal;
    font-weight: normal;
}

a.button:hover {
    background-color: #45a049;
    font-size: 18px;
    color: white;
    border: none;
    cursor: pointer;
	border-radius: 5px;
	font-style: normal;
    font-weight: normal;
}

