@import url('https://fonts.googleapis.com/css?family=Arimo:400,700');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('images/SkewedUp_BackgroundOnly.fw.png') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Arimo', sans-serif;
}

.container {
    width: 800px;
    height: 400px;
    background: rgba(255, 255, 255, 0.8); /* Adjust this value to change transparency */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
}

table {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    position: absolute;
    top: 12px; /* Move the entire table 12px down */
}

td {
    vertical-align: top;
    padding: 10px;
}

.top-row td {
    height: 50px;
}

.middle-row {
    height: 250px; /* Adjust height to make room for the bottom row */
    transform: translateY(-30px); /* Move the middle row up */
}

.middle-row td {
    height: 250px;
}

.bottom-row td {
    height: 50px;
    text-align: center;
    font-size: 10px; /* Set font size to 10 */
}

header .logo {
    width: 37.5px; /* Adjusted to 25% of the original 150px width */
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.auth-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.auth-buttons a {
    color: #333;
    text-decoration: none;
    margin-left: 0.625px; /* Further reduced margin */
    padding: 0.3125px 0.625px; /* Further reduced padding */
    border: 1px solid #333;
    border-radius: 5px;
    font-size: 6px; /* Further reduced font size */
}

.subscribe-btn {
    background-color: red;
    color: white;
}

.middle-row .left .contents {
    max-height: 100%;
    overflow-y: auto;
    font-family: 'Arimo', sans-serif;
    font-weight: bold;
    font-size: 7.5px; /* Reduced font size by 25% */
    transform: translateY(-30px); /* Move contents up */
}

.middle-row .left .contents h2 {
    font-size: 10.5px; /* Reduced font size by 25% */
    margin-bottom: 7.5px; /* Adjusted margin to match new size */
    font-weight: bold;
}

.middle-row .left .contents ul {
    list-style: none;
    padding: 0;
}

.middle-row .left .contents ul li {
    margin-bottom: 3.75px; /* Adjusted margin to match new size */
}

.middle-row .middle {
    padding-left: 5px; /* Move middle column towards the left */
    width: 50%; /* Adjusted width to give more space to the right column */
}

.middle-row .middle .content-area {
    width: 100%;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.9); /* Adjust this value to change transparency */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-height: 100%;
    overflow-y: auto;
    font-size: 8px; /* Reduced font size by 2 */
}

.middle-row .middle .content-area h2 {
    font-size: 10px; /* Reduced font size by 2 */
    font-weight: bold;
    margin: 0 0 10px 0;
}

.middle-row .middle .content-area p,
.middle-row .middle .content-area ol {
    margin: 0 0 10px 0;
}

.middle-row .right {
    width: 30%; /* Adjusted width to 30% */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center/center the content */
    justify-content: center;
    text-align: center; /* Center text alignment */
}

.middle-row .right .cover-img {
    width: auto;
    height: auto;
    max-width: 100%; /* Ensure cover image fits within the column */
    max-height: 90%; /* Adjust max height to fit within the column */
}

.middle-row .right p {
    font-size: 12px; /* Adjust font size to fit text on one line */
    margin-top: 10px; /* Add margin for spacing */
}

.bottom-row .left,
.bottom-row .right {
    text-align: left;
}

.bottom-row .right {
    text-align: right;
}

footer {
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
    font-size: 10px; /* Ensure font size is set to 10 */
}




















