.button-container {
  display: flex;
  justify-content: center;
}

.button {
  font-size: 1.1rem;
  background: #007bff;
  padding: 0.5rem 2rem;
  color: white;
  border: 0;
  border-radius: 0.3rem;
  transition: background-color 0.2s ease-in-out;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2);
}

.button:hover {
  background-color: #333;
  cursor: pointer;
}

.infoModal {
  display: block;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #f4f4f4;
  line-height: 1.6;
  margin: 5% auto;
  width: 45%;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
  border-radius: 0.7rem;
  animation-name: modalopen;
  animation-duration: 0.5s;
}

.modal-content a {
  text-decoration: none;
}

.modal-header {
  background: #343434;
  padding: 15px;
  border-top-left-radius: 0.6rem;
  border-top-right-radius: 0.6rem;
  color: white;
  display: flex;
  justify-content: space-between;
}

.modal-header h2,
.modal-footer h3 {
  margin: 0;
}

.modal-body {
  padding: 10px 20px;
}

.modal-body p img {
  display: none;
}

.closeBtn {
  color: #f4f4f4;
  font-size: 1.6rem;
  padding: 0;
  margin: 0;
  transition: color 0.2s ease-in-out;
}

.closeBtn:hover,
.closeBtn:focus {
  color: #007bff;
  text-decoration: none;
  cursor: pointer;
}

@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 1100px) {
  .modal-content {
    width: 65%;
  }
}
@media (max-width: 700px) {
  .modal-content {
    width: 80%;
  }
}
@media (max-width: 450px) {
  .modal-content {
    width: 95%;
  }
}

/*# sourceMappingURL=modal.css.map */
