body {
    margin: 0;
    padding: 0;
    font-family: "Ginto", "Helvetica Neue", "Helvetica", "Arial", sans-serif;

    & > svg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .content-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;

        .content {
            color: #b9bbbe;
            background: #36393f;
            padding: 32px;
            font-size: 18px;
            box-shadow: 0 2px 10px 0 rgb(0 0 0 / 20%);
            border-radius: 5px;
            box-sizing: border-box;
            text-align: center;
            max-width: 70vw;
            min-width: 20vw;

            h2 {
                color: #fff;
            }

            .note {
                color: #1FAAE9;
                font-size: 0.8em;
            }
        }
    }
}
