﻿body {
}
.container {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
  height: 90vh;           /* Takes full viewport height */
  width: 95%;
}

.center-div {
  /* Add other styles like width, background, etc. */
}

#outPopUp {
  position: absolute;
  width: 300px;
  height: 200px;
  z-index: 15;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -150px;
  background: red;
}
