/*Nofication CSS*/
.callout {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;   
  max-height: 90vh;      
  overflow-y: auto;     
  z-index: 1001;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.callout-header {
  padding: 15px;
  background: #df0808;
  font-size: 24px; 
  color: black;
  text-align: center;
  border-top-left-radius: 10px; 
  border-top-right-radius: 10px; 
}


.callout-container {
  padding: 15px;
  color: black;
}

.closebtn {
  position: absolute;
  top: 5px;
  right: 10px;
  color: rgb(0, 0, 0);
  font-size: 24px; 
  cursor: pointer;
}

.closebtn:hover {
  color: lightgrey;
}

@media screen and (min-width: 900px) {
  .callout {
      width: 55%; 
      max-width: 85%;
  }
}


#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
}

#text{
position: absolute;
top: 50%;
left: 50%;
font-size: 50px;
color: white;
transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
}

.enlarge {
  transition:transform 0.25s ease;
}

.enlarge:hover {
  -webkit-transform:scale(1.1); /* or some other value */
  transform:scale(1.1);
}