.modal-background {
  position: fixed;
  background-color: #00000080;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.modal-background .modal {
  display: grid;
  grid-template-areas:
  "empty advanced close"
  "content content content";
  grid-template-columns: 1fr max-content max-content;
  grid-template-rows: max-content 1fr;
  margin: auto;
  margin-top: 100px;
  height: 475px;
  max-width: 845px;
  overflow: hidden;
}

.modal-background .modal>div {
  background-color: black;
  grid-area: content;
}

.modal .advanced-button {
  grid-area: advanced;
  background-color: #3b4447;
  color: white;
  border: 1px solid #3b4447;
  cursor: pointer;
  font-size: 16px;
  padding: 5px 10px;
}

.modal .close-button {
  grid-area: close;
  background-color: #3b4447;
  color: white;
  border: 1px solid #3b4447;
  cursor: pointer;
  font-size: 16px;
  padding: 5px 10px;
}
