*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Varela Round", sans-serif;
    font-style: normal;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
body {
    width: 100%;
    height: 100dvh;
    background-color: #FFFFFF;
    overflow: hidden;
}

.message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    white-space: pre-line;
    color: rgba(148, 148, 148, .8);
}
.message h2 { font-size: 50px; }