

.course-link{
    text-decoration: none; /* Remove underline */
    color: #e33838;
    font-weight: bold;
    font-size: 1.3vw;
    transition: all 0.3s ease; /* Smooth transition for color and shadow */

}

.course-link:hover {
    color: #e33838; /* Change color on hover */
    text-shadow: 0 0 8px #d2454534, 0 0 15px #d2454534, 0 0 20px #d2454534; /* Glowing text effect */
}


@media (max-width: 500px) {
    .course-link{
        font-size: 4vw;
    }

    .link-text {
        padding-top: 2vh;
    }

}