#mylightbox {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.8);
}

    #mylightbox img {
        margin: 3rem;
        max-width: calc(100% - 6rem);
    }


.lightbox-close {
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
}

    .lightbox-close:hover {
        color: #ddd;
    }


    .redstate {
        display: flex;
        position: fixed;
        width: 100%;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        top: 0;
        left: 0;
        background-color: rgba(116,0,0,.7);
        z-index:2;
    }

    .redstate .text-top {
        font-family: "Inconsolata", monospace;
        font-weight: 400;
        text-transform: uppercase;    color: #fff;
        font-size: 2rem;
        line-height: 2.5rem;
        text-align: center;
        max-width: 400px;
    }

    .redstate .button {
        font-family: "Inconsolata", monospace;
        font-weight: 400;
        text-transform: uppercase;
        font-size: 2rem;
        line-height: 2.5rem;
        letter-spacing: 2px;
        margin: 3rem auto;
        text-align: center;
        background-color: #E63E30;
        width: fit-content;
        padding: .5rem 1rem;
        color: #fff;
        cursor: pointer;
    }

    .redstate .text-bottom {
        font-family: "Inconsolata", monospace;
        font-weight: 400;
        text-transform: uppercase;
        font-size: 2rem;
        line-height: 2.5rem;
        letter-spacing: 2px;
        text-align: center;
        max-width: 400px;
        color: #FFFF00;
        cursor: pointer;
    }
