.popup {

    font-family: Arial, sans-serify;
    display: none;
    position: fixed;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    
    z-index: 2000;
  }

.popup-content{

    position: relative;
    top:20px;
    left:20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

    width:300px;
    height:400px;
    padding: 20px;
    font-weight: 500;
    color: #333; 
    font-family: 'Lora', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-decoration:none;
    border-radius: 20px;  
    text-align: center;
    
}

.popup-content h2{
    margin-top: 20px;
    color:#333;
    font-weight: bold;
    font-family: Tahoma, Arial, sans-serif;
}

.popup-content .close-btn {

    position: absolute;
    top: 20px;
    right: 30px;
    color:#333;
    font-size:30px;
    font-weight: bold;
    transition: all 200ms;
    cursor: pointer;
    
}

.popup-content .close-btn:hover{
    color: #06d85f;
}
