    /* Popup modal styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.6);
	
	  color: black;
    }

	.modal-content {
	  /* background-color: #ECECEC; */
	  background-image: url('../img/modal-bg.jpg'); 
      background-size: cover; 
      background-repeat: no-repeat; 
      background-position: center;
      margin: 15% auto;
      padding: 20px;
      border-radius: 8px;
      width: 250px;
      text-align: center;
      font-family: 'Courier New', Courier, monospace;
    }

    .modal-button {
      background-color: #007BFF;
      color: white;
      padding: 10px 20px;
      margin: 10px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
    }

    .close {
      color: #aaa;
      float: right;
      font-size: 24px;
      font-weight: bold;
      cursor: pointer;
    }