*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Courier New', Courier, monospace
}

.container{
    width: 100%;
    height: 100vh;
    background: violet;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn{
    padding: 10px 80px;
    background: blanchedalmond;
    border:none;
    border-radius: 20px;
    font-size: 30px;
    font-weight: 800;
    outline: none;
    cursor: pointer;
    
}


.popup {
    width: 400px;
    background: pink;
    top: 0;
    left: 50%;
    border-radius: 10px;
    position: absolute;
    text-align: center;
    transform: translate(-50%,-50%) scale(0.1); 
    padding: 0 30px 30px;
    color:blueviolet;
    visibility: hidden;
    transition: transform 0.5s, top 0.5s;
}

.open-popup {
    visibility: visible;
    top: 50%;
    transform: translate(-50%,-50%) scale(1); 
}



.popup img {
    width: 100px;
    margin-top: -50px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0,0,0.2);

}

.popup h2{
    font-size: 40px;
    font-weight: 700;
    margin: 30px 0 10px;
}

.popup button{
    width: 100%;
    background: deeppink ;
    margin-top: 50px;
    padding: 10px 0;
    border: 0;
    color: black;
    outline: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(0, 0,0,0.2);
}

