#nocamera {
    background: #455B3E;
    background: linear-gradient(
      165deg,
      #455B3E 0%,
      #455B3E 36%,
      #323F2D 100%
    );
    width: 100svw;
    height: 100svh;
    left: 0;
    top: 0;
    position: fixed;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: visible;
    display: none;
}

#nocamera > h1 {
    font-family: 'VictorianLetPlain';
    font-weight: normal;
    font-size: 5svh;
    overflow: visible;
    padding: 2svh;
}

#nocamera > p {
    font-size: 2svh;
    margin-bottom: 5svh;
    font-family: '', serif;
    overflow: visible;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    padding: 4svh;
}

#nocamera > p > em {
    font-style: normal;
    font-weight: bold;
    font-family: '', serif;
    color: var(--yellow);
}

@media (min-aspect-ratio: 1/1) {

    #nocamera {
        padding: 15svw;
    }

    #nocamera > h1 {
        font-size: 5svw;
    }

    #nocamera > p {
        font-size: 2svw;
    }
}