    .announcement-wrapper {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
	  overflow: visible;
    }
    .announcement-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      z-index: 1;
    }
    .announcement {
      position: relative;
      width: 60vw;
      height: 50vh;
      background-color: #fff; 
      border-radius: 10px;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
      display: flex;
      z-index: 2;
	   animation: zoomIn 0.7s ease forwards;
     }
    .announcement-image {
      width: 50%;
      background: url('../img/pearl-kittanning.jpg') no-repeat center center/cover;
	  border-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
    }
    .announcement-content {
      width: 50%;
      padding: 0px;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
	  overflow:visible;
	   border-top-right-radius: 10px;   
    }

    .announcement-content h1 {
        font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: grandOpeningPulse 2.5s ease-in-out infinite;
    }
    .announcement-content p {
      font-size:14px;
      padding:10px;
    }
    .announcement-content img {
      width: 100%;
      object-fit: cover;
      align-self: flex-end;
	  border-bottom-right-radius: 10px;
	  overflow:hidden;
    }
    .announcement-close-btn {
  position: absolute;
  top: -20px;      /* move button 20px above the top edge */
  right: -20px;    /* move button 20px to the right outside the box */
  font-size:20px;
  font-weight:bold;
  background: rgba(0,0,0,0.8);
  color: white;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  user-select: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: background-color 0.3s ease;
    }

@keyframes grandOpeningPulse {
  0%, 100% {
    transform: scale(1);
    text-shadow: 0 0 8px #1bbc9b, 0 0 12px #ff6347;
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    text-shadow:
      0 0 20px #1bbc9b,
      0 0 30px #ff6347,
      0 0 40px #ff6347;
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media screen and (max-width: 767px){
.announcement{
width:90vw;
}
}