#signUpModal {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    z-index: 500;
    height: 100%;
    width: 100%;
    overflow: auto;

    background-color: rgba(0,0,0,0.3);
}

.theModal {
    background-color: rgba(255,255,255,1);
    margin: 1% 10%;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 5px 10px 0 rgba(0,0,0,0.24), 0 5px 10px 0 rgba(0,0,0,0.20);
    animation-name: pop-in;
    animation-duration: 1s;
}

.modal-Header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#close-SignUpModal-Button {
    color: brown;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
}

#close-SignUpModal-Button:hover {
    color: red;
    font-size: 27px;
    font-weight: bold;
}

@keyframes pop-in {
    from {opacity: 0};
    to {opacity: 1};
}
