@keyframes fade-in {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes editor_region_focus {
    0% {
        box-shadow: inset 0 0 0 0 #33b3db
    }
    to {
        box-shadow: inset 0 0 0 4px #33b3db
    }
}

@keyframes rotation {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(1turn)
    }
}

.wp-block {
    width: 610px
}

body {
    color: #191e23;
    font-family: "Noto Serif", serif;
    line-height: 1.8
}

body,
p {
    font-size: 16px
}

ol,
ul {
    margin: 0;
    padding: 0
}

ul:not(.wp-block-gallery) {
    list-style-type: disc
}

ol {
    list-style-type: decimal
}