body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    padding-top: 100px;
    background-color: #fff8e7;
    box-sizing: border-box;
}

.folder {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    margin-bottom: 20px;
}

.folder-icon {
    width: 60px;
    height: auto;
    max-width: 100%;
}

.message-content {
    /* width: 100%; */
    /* max-width: 600px; */
    background-color: white;
    padding: 15px;
    border: 1px solid black;
    white-space: pre-line;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    body {
        flex-direction: row;
        justify-content: flex-start;
        padding-left: 50%;
    }

    .folder {
        margin-bottom: 0;
        margin-right: 20px;
    }
}