#Alert{
    position:absolute;
    text-align: center;
    z-index: 100;
    
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    width:500px;
    
    background-color:white;
    padding: 20px;
    box-shadow: 0px 0px 10px 10px rgba(0,0,0, .50);
    
    border: 3px solid rgba(0,0,0, .50);
}

#Alert p{
    text-align: justify;
    margin-top:20px;
}

#Alert h3{
    font-weight: bold;
    color: #e2a750;
    margin: 5px;
}

#Popup{
   position: fixed;
    width: 100%;
    height:100%;
    z-index: 90;
}

#CloseBtn{
    
}

.BlurClass{
       filter: blur(5px);
   transition: filter .2s ease;
}