
/* Styles for the Resources section */
#resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 50px;
}
.resource-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e88e5, #0056b3);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
.resource-link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    height: 100%;
    width: 100%;
    text-align: center;
}
.resource-link:hover .resource-name {
    text-decoration: underline;
}
