#notification-banner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-image: linear-gradient(90deg, #eb5497, 70%, #f5ce45);
    border: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    width: 400px;
    border-radius: 8px;
    color: white;
    font-family: "Major Mono Display";
  }
  
  #notification-banner a {
    color: #71bbe9;
    text-decoration: underline;
  }

  #notification-title{
display: inline-block;
    margin-right: 15px;
    margin-left: 15px;
    /* padding-top: 20px; */
    color: #5bff8a;
    font-family: 'Monoton';
    font-weight: 100;
    text-shadow: 2px 2px 6px black;
    font-size: 150%;
  }

  #notification-banner p{
    color:white;
        font-size: 80%;
    font-weight: 900;
    text-shadow: 1px 1px 0px black;
  }

  
  #notification-banner-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  #close-notification{
    position: absolute;
    top:3px;
    right:3px;
    font-weight: bolder;
    color:white;
    border:none;
    background: none;
  }