.main {
    display: flex;
    flex-direction: column;
    gap: 20px;

    position: absolute;
    bottom: 0;
    right: 0;

    height: calc(100vh - 70px);
    width: calc(100% - 250px);

    padding: 20px;

    overflow-y: auto;

    > h3, p {
        font-size: 20px;
    }
}