html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'Arial', sans-serif;
    text-align: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-image: linear-gradient(to bottom, #053d6f 11%, #e63748 132%);
}

.home {
    width: 100%;
    background-color: #e63748;
    padding-top: 10px;
    padding-bottom: 10px;
}

.home a {
    width: 100%;
    padding-top: 1px;
    padding-bottom: 1px;
    color: #053d6f;
}

h1 {
    display: block;
    font-size: 2em;
    -webkit-margin-before: 0.67em;
    -webkit-margin-after: 0.67em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    font-size: 32px;
    line-height: 40px;
    font-family: 'Arial', sans-serif;
    color: #053d6f;
}

.spotlight-group {
    background: rgba(230, 55, 72, 0.50); /* #e63748 with 50% opacity */
    padding-top: 50px;
    padding-bottom: 50px;
}

a {
    display: inline-block;
}

b {
    display: block;
    padding: 10px;
    background: rgba(5, 61, 111, 0.50); /* #053d6f with 50% opacity */
}

button {
    padding: 5px 10px;
}

/* Improved image styling for consistent display */
.spotlight {
    display: inline-block;
    width: 30%;
    max-width: 300px;
    margin: 15px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    border-radius: 10px 0px;
    border: 3px solid #fccf2e; /* Yellow border */
    background-color: #053d6f; /* Dark blue background for container */
    padding: 3px; /* Space between border and image */
}

.spotlight img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures images cover the area while maintaining aspect ratio */
    border-radius: 7px 0px; /* Slightly smaller than container radius */
    transition: transform 0.3s ease;
}

.spotlight:hover img {
    transform: scale(1.03);
}

.spotlight:hover {
    box-shadow: 0 0 15px #fccf2e; /* Yellow glow on hover */
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .spotlight {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .spotlight {
        width: 90%;
    }
}