@charset "utf-8";
/* CSS Document */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Deckkraft einstellen */
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: transparent;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 650px;
  margin: auto;
  text-align: center;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

body {
  font-family: Arial, sans-serif;
}

.modal-header {
  background-color: transparent;
  border-bottom: 1px solid #dee2e6;
}

.modal-body {
  text-align: center; 
}

.modal-body h2, .modal-body h3, .modal-body p {
  text-align: justify;
}

.modal-body p {
  color: #4a90e2;
  font-size: 16px;
}

.modal-dialog {
  max-width: 650px;
  max-height: 80%; 
  margin: 2.75rem auto;
}

.modal-title {
  font-size: 30px;
  color: #999999;
}
