.pop-email{
    background: rgb(209, 199, 199);
    width: 70%;
    padding: 90px;
    border-radius: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    font-family: cursive;
    text-align: left;
    animation: 1s drop;
}

@keyframes drop {
    0%{
        top: -100%;
    }
    100%{
        top: 50%;

    }
}

.parent-email{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;  
    display: none;
}