﻿.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 300; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
    /* pointer-events: none; */
}

/* Modal body */
.modal-content {
    background-color: lightgoldenrodyellow;
    margin: 15% auto; /* 15% from the top and centered */
    /* padding: 20px; */
    border: 1px solid #888;
    border-radius: 10px;
    /* width: 80%;  Could be more or less, depending on screen size */
    width: 40%;
    height: 40%;
    text-align: center;
    padding: 10px;
    position: relative;
}
.modal-content-text {
    margin: 25px auto; 
    color: blue;
}
.modal-footer {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  /* padding: 20px; */
  border: 1px solid #888;
  border-radius: 10px;
  /* width: 80%;  Could be more or less, depending on screen size */
  width: 500px;
  height: 30px;
}

/* The Close Button */
.close {
    background-color: cornflowerblue;
    border-radius: 9px;
    color: white;
    position: center;
    top: 0;
    width: 55px;
    height: 35px;
    font-size: 28px;
    font-weight: bold;
    pointer-events: all;
}

 .close:hover,
 .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
} 
