body {
    font-family: Arial, sans-serif;
}


/*
 ???????? ????????
*/
#page {
    transition: filter 0.5s;
}


/*
 ?????????? ? ??????????
*/
#overlay {

    position: fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background: rgba(0,0,0,0.45);

    backdrop-filter: blur(6px);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:9999;
}


/*
 ???? ???????
*/
#news-popup {

    background:white;

    width:600px;
    height:550px;
    padding:30px;

    border-radius:12px;

    box-shadow:0 10px 40px rgba(0,0,0,.4);

    text-align:center;

}


/*
 ??????
*/
#news-popup button {

    padding:10px 25px;

    border:0;

    background:#0066ff;

    color:white;

    border-radius:6px;

    cursor:pointer;

}