/* Styling for the popup */
#exitPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#popupContent {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 100%;
}
#popupContent .popupTitle {
    font-size:1.6em;
    margin-top:50px;
    line-height:1.2;
    font-weight: 600;
}

#popupContent a {
    background:#0070b0;
    border-radius:20px;
    padding:5px 20px;
    display:inline-block;
    color:#fff;
    margin-top:20px;
    margin-bottom:20px;
}

#closePopup {
    border-radius:0;
    padding:0;
    margin:0;
    background:none;
    border:none;
    float:right;
}
#closePopup svg {
    width:30px;
    height:30px;
    padding:0;
    margin:0;
}