/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: timesnewroman;
  font-size: larger;
}

a {
  color: red;
}

.nop {
  margin: 0;
}

summary {
  color: red;
}

button {
  background: none;
  border: none;
  color: red;
  text-decoration: underline;
  font-size: 19px;
    font-family: timesnewroman;
}

.center-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
}

.warning {
  width: 25%;
}

#popup-overlay {
  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: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
  /* Centers the content inside the overlay */

  justify-content: center;
  align-items: center;
}

/* The actual pop-up box content */
.popup-content {
  background-color: #fefefe;
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Adjust width as needed */
  max-width: 500px; /* Optional: set a max-width */
  border-radius: 5px;
  text-align: center;
}

