html,
body {
    padding: 0;
    margin: 0;

    background-color: #282328;

    height: 100%;
    overflow: hidden;

    font-family: monospace, Arial, Helvetica, sans-serif;
}

.flexcenter {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 100%;
    width: 100%;
    background-color: transparent;

    position: fixed;
    z-index: 1000;
}

#popup {
    text-align: center;
    color: white;
    background-color: black;
    padding: 1em;

    z-index: 1000;

    border: solid white 0.1em;
    border-radius: 0.5em;

    width: 50%;

    font-size: 3vw;

    display: flex;
    flex-direction: column;

    gap: 0.5em;

}

#title {
    font-size: 3vw;
}

#desc {
    font-size: 2vw;
    display: block;
    white-space: pre-wrap;
}

main {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;

    height: 100%;

    position: fixed;
    z-index: 1;
}