* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #E0E0E0;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.rectangle {
    width: 900px;
    height: 500px;
    background-color: #E0E0E0;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    user-select: none;
}

.content {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

footer {
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: #555;
    background-color: #E0E0E0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

footer p {
    line-height: 1.5;
}

.left,
.right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.left {
    background-color: #FFD75D;
    border-top-left-radius: 20px;
}

.right {
    background-color: #FFFFFF;
    border-top-right-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
}

.right p {
    line-height: 1.7;
    font-size: 20px;
}

.left img {
    max-width: 80%;
    max-height: 80%;
}

.divider {
    width: 2px;
    height: 100%;
    background-color: #ccc;
}

.vertical {
    width: 600px;
    height: 80vh;
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    overflow: hidden;
    user-select: none;
}

.scroll-content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding-right: 10px;
}

.scroll-content p {
    text-align: justify;
    line-height: 1.6;
    font-size: 18px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 20px;
}

li {
    margin-bottom: 5px;
}

ul,
ol {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.last-update {
    text-align: center;
    font-size: 12px;
    margin-top: -3px;
    margin-bottom: 3px;
}