.my-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 2;
}

.my-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    width: 80%;
    max-width: 27rem;
    border-radius: 0.5rem;
    color: black;
    z-index: 3;
}

.modal-option {
    font-size: 2.5rem;
    line-height: 4rem;
    border-width: 1px;
    border-color: gray;
}

.modal-option:hover {
    cursor: pointer;
    background-color: cornflowerblue;
    color: whitesmoke;
}

.modal-option:focus {
    border-style: none;
    outline: none;
    background-color: cornflowerblue;
    color: whitesmoke;
}

.show-modal {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}