
main {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

section {
    width: 612px;
    min-height: 792px;
    margin: 5px 16px;
    background-color: #F4F5F6;
    font-size: 12px;
}

textarea {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    font-size: 12px;
    resize: none;
    overflow: hidden;
}

textarea:focus:focus-visible {
    outline: solid 3px #A5BDF3;
    outline-offset: 2px;
    border-radius: 2px;
}

pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 12px;
}

@media (max-width: 1248px) {
    section {
        width: calc((100vw / 2) - 2);
        margin-inline: 1px;
    }
}

@media (max-width: 820px) {
    main {
        display: grid;
    }
}