#container {
    width: 90%;
    display: flex;
    justify-content: space-between;
}

#container>div:nth-child(1) {
    display: flex;
    flex-direction: column-reverse;
    overflow-y: auto;
    /* border: 1px solid; */
    width: 22%;
}

#container>div:nth-child(2) {
    width: 75%;
}

.apipara {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border: 1px solid saddlebrown; */
    border-radius: 8px;
    background-color: aliceblue;
    /* padding: 2px; */
    margin-top: 10px;
}

.apipara>h6:nth-child(1) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18%;
    border-radius: 4px;
    border: 1px solid green;
    background-color: lightgreen;
}

.apipara>p:nth-child(2) {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    margin-left: 5px;
    width: 70%;
}

.apipara>button:nth-child(3) {
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 10%; */
    border-radius: 4px;
    border: 1px solid orangered;
    background-color: orange;
}

#req{
    margin-bottom: 10px;
}