* {
    margin: 0;
    padding: 0;
}
main {
    width: 100%;
    height: 100vh;
    display: grid;
    place-items: center;
}

#modalOpen {
    /* display: none; */
    background-color: #eb6100;
    color: white;
    border: none; 
    padding: 20px 40px;
    border-bottom: 7px solid #9e4a0e;
    box-shadow: 0px 3px 4px black;
    cursor: pointer;
    font-size: 2rem;
    width: 50%;
    transition: all 0.2s;
}

#modalOpen:hover {
    margin-top: 5px;
    border-bottom: 1px solid #eb6100;

}

#modal {
    display: none;
    position: fixed;
    left: ;
    top: 30%;
    height: 30%;
    width: 50%;
    background-color: gray;
    z-index: 10;
}

.modal-content { 
    background: #f4f4f4;
    margin: 15% auto;
    width: 80%;
    box-shadow: 0 2px 7px black;
    animation-name: popup;
    animation-duration: 1.1s;
}
@keyframes popup {
    from {
        transform: translateY(150%);
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-header {
    background-color: #eb6100;
    padding: 3px 15px;
    display: flex;
    justify-content: space-between;
}



.modal-header h1 {
    font-size: 1, 3rem;
    margin: 10px 0;
}

.modalClose {
    font-size: 1.3rem;
    cursor: pointer;
}

.modal-body {
    padding: 15px 25px;
}

