.dialog, .dialog .backdrop {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    background: none;
}

.dialog .backdrop {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px) saturate(30%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dialog .backdrop .content {
    padding: 20px;
    color: #fff;
    overflow: auto;

    max-width: 1000px;
    max-height: calc(100vh - 60px);

    background-color: var(--green-light);
    box-shadow: 10px 10px 0 var(--accent-shadow);
}

.dialog h1 {
    color: var(--accent);
    font-size: 1.8em;
}

.dialog h2 {
    color: var(--accent);
    font-size: 1.3em;
}

@media (max-width: 768px) {
    .dialog .backdrop .content {
        padding: 16px;
        max-width: 92vw;
        max-height: calc(100vh - 40px);
    }
}
