#full-screen-alert-global {
    width: 100vw;
    height: 100vh;
    background: radial-gradient(black, transparent);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    h1 {
        margin-left: 0.5em;
        margin-right: 0.5em;
    }

    .buttons-global {
        width: 7.7em;
        height: 2.5em;
        /* border: 1px solid black; */
        border-radius: 0.7em;
        margin: 0.2em;
        background: #70b640;
        display: grid;
        align-content: center;
        cursor: pointer;
        margin-left: 2em;
        margin-right: 2em;
        margin-bottom: 0.5em;
        text-align: center;
        text-transform: uppercase;
    }

    .buttons-global:nth-child(2) {
        background: #f6b969;
    }

    .alert-content-global-in {
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        background: white;
        border: 1px solid black;
        border-radius: 1em;
        height: fit-content;
        width: fit-content;
        min-width: 35em;
        min-height: 15em;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        h1{
            text-align: center;
        }
        span {
            color: red;
        }

        b {
            font-size: x-large;
        }
    }

    .buttons-set-global {
        display: flex;
        justify-content: space-between;

        .buttons-global {
            padding: 0.3em;
        }
    }
}