body {
    margin-top: 0;
}

#page {
    box-sizing: border-box;
    display: flex;

    /* background-color: lightgray; */
  
    margin: 20px  auto;
    width: 75%;  
    padding: 20px;

    justify-content: space-between;
    gap: 10px;
}

.side {
    box-sizing: border-box;
    display: flex;

    /* background-color: darkgray; */

    flex: 1 1;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
}

.layer {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex: 0;

    /* background-color: gray; */

    gap: 10px;
    width: 100%;
}

.box {
    width: 100%;
    padding: 5px;
    font-size: 20px;

    text-align: center;

    border-style: solid;
    border-radius: 10px;

    overflow-y: auto;
}

.side1 {
    flex: 4 1 0;
}

/* .side2 {} */

/* .layer1 {} */

.layer2 {
    flex: 2 1 0;
}

.side2 .box {
    box-sizing: inherit;
    flex: 1 1 0;
}

.side1 .layer1 .box1 {
    flex: 2 1 0;
}

.side1 .layer1 .box2 {
    flex: 1 1 0;
    height: fit-content;
}

.side1 .layer1 .box2 img {
    width: 100%;
}

.side1 .layer1 .box2 .footer {
    font-size: 15px;
}

.scrollbox::-webkit-scrollbar {
    color: blue;
}