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;
    background-image: url(../images/barnards_ave_pixel_art.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    box-sizing: border-box;

    /* cursor: hand; */
}

.folder {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* display: flex;
    flex-direction: column;
    align-items: center 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 (max-width: 768px) {
    body {
        background-size: 390px 844px;
    }
} */

@media (min-width: 768px) {
    body {
        flex-direction: row;
        justify-content: flex-start;
        padding-left: 50%;
        background-size: 390px 844px;
    }

    .folder {
        margin-bottom: 0;
        margin-right: 20px;
    }

    .message-content {
        margin-left: 30px;
    }
}
