/* CSS for the NCTE - Mandatory section */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.format {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.format h2 {
    color: #dc2011; /* Red color for the header */
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px; /* Increased space between images */
}

.links img {
    max-width: 100%; /* Makes images responsive */
    height: auto;
    border-radius: 8px; /* Optional: Adds rounded corners to images */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Adds shadow for better visual effect */
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

.links img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

@media (max-width: 600px) {
    .format h2 {
        font-size: 20px;
    }
    
    .links img {
        max-width: 90%; /* Make images slightly smaller on smaller screens */
    }
    
    .links a {
        font-size: 16px;
    }
}

/* Styling for the text section */

.text-section {
    background-color: #ffffff;  /* White background for the text section */
    padding: 20px;  /* Add padding around the content */
    margin-top: 20px;  /* Space above the section */
    margin-bottom: 20px;  /* Space below the section */
    border-radius: 8px;  /* Rounded corners for the section */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);  /* Light shadow around the section */
    color: #333;  /* Text color */
    font-size: 16px;  /* Base font size for the content */
    line-height: 1.6;  /* Line height for better readability */
    font-family: Arial, sans-serif;  /* Font family for consistency */
    text-align: justify;  /* Justify text for clean alignment */
}

/* Optional: Add styles for headings inside the text section */
.text-section h2,
.text-section h3 {
    color: #dc2011;  /* Red color for headings */
    font-weight: bold;  /* Make headings bold */
    margin-bottom: 10px;  /* Space below headings */
}

/* Optional: Style links within the text section */
.text-section a {
    color: #0073e6;  /* Blue color for links */
    text-decoration: none;  /* Remove underline */
}

.text-section a:hover {
    text-decoration: underline;  /* Underline links on hover */
}
