.archive-card{


border:2px solid #ff0000;

padding:25px;

cursor:pointer;

background:#111;

color:#ff3333;

box-shadow:

0 0 15px #ff0000;

transition:.3s;


}



.archive-card:hover{


transform:scale(1.03);

box-shadow:

0 0 30px #ff0000;


}





#filePopup{


display:none;


position:fixed;


top:0;

left:0;


width:100%;


height:100%;


background:

rgba(0,0,0,.85);



z-index:100;


}



.popup-content{


background:white;


color:black;


width:70%;


max-height:80%;


overflow-y:auto;


margin:5% auto;


padding:30px;


border:

3px solid red;


box-shadow:

0 0 30px red;


}




.close-btn{


float:right;


background:red;


color:white;


border:none;


padding:10px;


cursor:pointer;


}