/* Reset some defaults for consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Use a clean sans-serif font */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #d7d7d7;
    color: #333;
    line-height: 1.6;
    padding: 2rem;
}

/* Center the content and give it breathing room */
.main_body {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Image containers */
.MMS_body img,
.RMW_body img {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.MMS_body img:hover,
.RMW_body img:hover {
    transform: scale(1.1);
}

/* Text section */
.TEXT_body p {
    font-size: 1.1rem;
    text-align: center;
    padding: 0 1rem;
    color: #333333;
}

/* Credentials Section */
.credentials {
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0px;
    text-align: center;
    padding: 1rem;
    background-color: #f1f1f1;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive tweaks */
@media (max-width: 870px) {
    .TEXT_body p {
        font-size: 1rem;
    }

    .MMS_body img,
    .RMW_body img {
        max-width: 200px;
    }
}
