.cover-container {
	position: relative;
	width: 100%;
	text-align: center;
	height: 400px;
}

.centered-text {
	position: absolute;
	bottom: 0;
	transform: translate(-50%, -50%);
	left: 50%;
	color: white;
	font-size: 40px;
	font-weight: bold;
	text-shadow: 2px 2px 4px rgba(0, 0, 0);
}

@media screen and (max-width: 1200px) {
	.centered-text {
		font-size: 30px;
	}
}

@media screen and (max-width: 1024px) {
	.centered-text {
		font-size: 26px;
	}
}


@media screen and (max-width: 820px) {
	.centered-text {
		font-size: 20px;
	}
}


@media screen and (max-width: 767px) {
	.centered-text {
		font-size: 12.5px;
	}
}

.subsection{
	font-size: 30px;
}

.mnras {
    color: #ffcc00;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.results-content {
        display: flex;
        flex-wrap: wrap; /* Allow items to wrap to the next line if there's not enough space */
        gap: 20px; /* Add spacing between items */
    }

.results-content h3 {
	border-bottom: 2px solid #333; /* Dark underline for headings */
	padding-bottom: 5px;
	margin-bottom: 10px;
}

.results-content img {
	max-width: 40%; /* Make sure images don't exceed their container */
	height: auto; /* Maintain aspect ratio */
	border: 1px solid #ccc; /* Add a border around each image */
	border-radius: 5px; /* Add rounded corners */
	transition: transform 0.3s ease; /* Add a smooth transition effect */
	cursor: pointer; /* Add a pointer cursor on hover */
}

.results-content img:hover {
	transform: scale(1.1); /* Enlarge the image slightly on hover */
}

figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 20px;
    position: relative;
}

figcaption {
    max-width: 100%;
    margin-top: 10px;
    text-align: justify;
    color: #ccc; /* Adjust the text color */
}