
.course-section {
    display:flex;
    flex-direction: column;
    align-items: center;
}
.courses-header {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
}
main {
    flex: 1;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    flex-direction: column;
}
.cover-container {
    width: 15rem;
    max-width: 80%;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.cover-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}
/*SPECIAL CLASS THAT HIDES ELEMENTS TO USER*/
.hidden {
    display: none;
}
@media (min-width: 768px) {
    main {
        justify-content: space-around;
        flex-direction: row;
    }
    .course-section {
        width: 28rem;
    }
}
