.fullScreenWarning {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    color: #eceff4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    font-family: sans-serif;
    z-index: 9999;

    background: radial-gradient(circle,rgba(20, 19, 22, 1) 60%, rgba(33, 38, 33, 1) 100%);
}

.fullScreenWarning h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.fullScreenWarning p {
    font-size: 1.2rem;
}
