.modal {

  position: fixed;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 200ms ease-in-out;
  border: 4px solid black;
  border-radius: 10px;
  z-index: 10;
  background-color: #0C4880;
  width: 500px;
  max-width: 80%;
}

.modal.active {
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid red;
background-color:  dogeblue ;
width: 500px;
height: 40px;
color:white;
}

.modal-header .title {
text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
color:white;

}

.modal-header .close-button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-size: 1.25rem;
  font-weight: bold;
color:white;


}

::-webkit-scrollbar {
              display: none;
              }
.modal-body {
          background-color: #02091A;
          width: 500px;
          height: 600px;
          border-radius: 10px;
          border: 3px solid #88D6F3;
          padding: 0px;
          margin: 0px;
          color: #8EB2EE;
          text-decoration: none;
          font-weight: bold;
          font-size:12px;
          overflow: auto;
        }

#overlay {
  position: fixed;
  opacity: 0;
  transition: 200ms ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .5);
  pointer-events: none;
}

#overlay.active {
  opacity: 1;
  pointer-events: all;
}

