body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    overflow: hidden;
}

#left-tab {
    width: 30%;
    background-color: #76FFB1;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    font-family: monospace; 
    line-height: 1.4;
}

#poem {
    color: #FF01C5;
}

#poem span {
    cursor: pointer;
    color: black;
    background-color: black;
    text-decoration: none;
}

#poem span.revealed {
    color: #FF01C5;
    background-color: transparent;
}

#content {
    width: 70%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #ffffff;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

#content input {
    margin-top: 10px;
    padding: 8px;
    font-size: 16px;
}

#content button {
    padding: 8px 16px;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
}
