
*{
    line-height: 1.5
}

li {
    font-size: 1.2rem;
}

.red {
    color: red;
}

.nrr_logo {
    width: 15vw;
}

.container {
    width: 800px;
    height: auto;
    display: grid;
    grid-template-columns: 2 1fr;
    grid-template-rows: auto 1fr;
    gap: 36px;
    border: 1px solid navy;
}

.litify {
    grid-column: 1;
    justify-self: center;
}

.API {
    grid-column: 3;
    justify-self: center;
}

.remove_link a {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

.api_container {
    display: flex;
    margin-bottom: 1rem;
}

.left_title {
    width: 60%;
    border-left: 4px solid #42b983;
}

.right_title {
    width: 40%;
    border-right: 4px solid #42b983;
}

.left_title::before,
.right_title::before {
    content: "\00a0 \00a0 \00a0 \00a0 ";
}

.api_payload,
.api_response {
    justify-self: left;
    margin-left: 2.4rem;
    background-color: #e0e0e0;
    padding-right: 1rem;
    padding-left: 1rem;
    width: 40%;
    height:fit-content
}

.api_schema {
    justify-self: left;
    background-color: #e0e0e0;
    padding-right: 0.5rem;
    padding-left: 1rem;
    width: 60%;
    height:fit-content
}

code.code,
.api_container .api_response code,
.api_container .api_schema code,
.api_container .api_payload code {
    color: #000080;
    background-color: #e0e0e0;
}

code {
    font-size: 15px;
    word-wrap: break-word;
}

code.code {
    background-color: white;
    padding-left: 2rem;
}



.markdown-section {
    max-width: 100%;
    margin-right: 1rem;
}