/* Add the custom colors as variables */
:root {
    font-size: 16px;
    font-family: 'Courier New', Courier, monospace;
    --pink: #f5a196;
    --dark: #333;
  }
  
.modal button {
    background-color: var(--pink);
    color: var(--dark);
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    padding: 10px 20px;
    margin: 5px;
    font-size: 1rem;
    font-family: 'Courier New', Courier, monospace;
    transition: background-color 0.3s;
  }

.modal button:hover {
    background-color: var(--dark);
    color: var(--pink);
}

#modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 1.75rem;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 999;
    justify-content: center;
    align-items: center;
  }
  
  
  .modal {
    background-color: white;
    padding: 20px;
    border-radius: 0.25rem;
    max-width: 80%;
    text-align: center;
  }

  .modal p {
    font-weight: bold;
  }