#full {
    position: fixed;
    top: 0;
    left: 0;
    background:rgba(0, 0, 0, 0.705);
    /* opacity: .1; */
    height: 100%;
    width: 100%;
    z-index: 100;
    padding: 100px;
    text-align: center;
    display: none;
}


#full span{
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 60px;
    font-weight: bolder;
    color: rgb(255, 255, 255);
    cursor: pointer;
    z-index: 100;

}
#full #form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    /* border:5px solid #fff; */
    border-radius: 5px;
    width: 500px;
    object-fit: cover;
    background: #ffff;
    display: flex;
    justify-content: center;
    animation-name:form;
    animation-duration: 0.5s;
}
@keyframes form {
    from {top: 0%;}
    to {top: 50%;}
}
