
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 30px;
}

/* Create cards similar to bootstrap for sub-content */
.sub-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.sub-content h1 {
    text-align: center;
    margin-top: 5px;
}


#spotlight ul {
    list-style-type: none;
}

ul li {
    margin: 0.5rem 0;
}

#spotlight ul li a {
    text-decoration: none;
    color: rgb(255, 179, 255);
    font-weight: bold;
    font-size: 1.25rem;
    transition: color 0.4s;
}

#spotlight ul li a:hover {
    color: rgb(255, 255, 255);
}
