/* General Styles */
body {
    font-family: Consolas, monospace;
    font-size: 7px;
    color: black;
    background-color:;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    justify-content: space-between;
    width: 500px; /* Set the total container width to 500px */
}

.left-column, .right-column {
    width: 48%;
    box-sizing: border-box;
}

table {
    width: 100%;
    margin-bottom: 20px;
}

td {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.5;
    color: lightgray;
    text-shadow: 1px 1px 2px red;
}

/* Left Column: Rotated Text Table */
.rotated-table td {
    transform: rotate(-15deg); /* Rotate text counter-clockwise */
    white-space: nowrap;
    font-family: azkasia;
    font-size: 17px;
    color: black;
    background-color:;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Left Column: Image Zoom */
.image-container img {
    width: 33%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.image-container:hover img {
    transform: scale(1.1);
}

/* Right Column: Hover Rotate Image */
.rotate-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.rotate-image:hover img {
    transform: rotate(15deg); /* Rotate image clockwise on hover */
}

/* Right Column: Small Zoomable Images */
.small-image-container img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease-in-out;
}

.small-image-container:hover img {
    transform: scale(1.1);
}
