body
{
    background-image: url('/Images/bg.png');
    background-size: 900px;
    background-repeat: repeat;

    display: flex;

    justify-content: center;
    align-items: center;

    flex-direction: column;
}

.recommended-container
{
    display: flex;
    flex-direction: column;

    align-items: center;

    padding: 10px;

    height: 300px;
    width: 500px;

    border: 2px solid;
    border-radius: 10px;

    animation: borderColor 2s infinite;
}

@media (max-width:700px) {

    .recommended-container
    {
        width: 90%;
        height: 200px;
    }
}

@keyframes borderColor {
    0%      {border-color: white;}
    50%     {border-color: var(--daveColor);}
    100%    {border-color: white;}
}

.recommended-text-container
{
    display: flex;
    flex: 1;
    width: 100%;

    justify-content: center;
    /* align-items: center; */

}

.recommended-image-container
{    
    display: flex;
    
    width: 100%;
    height: 100%;

    justify-content: center;
    align-items: center;

    background-image: url('/Images/Course_Thumbnails/17_Survivor.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;

    transition: transform .5s;

}

.recommended-image-container:hover
{
    cursor: pointer;    
    transform: scale(1.05);
    transition: transform .5s;
}

.recommended-image-container:active
{
    transform: scale(1);
    transition: transform .5s;
}


.difficulty-slider-container
{
    display: flex;
    flex-direction: column;

    align-items: center;

    padding: 10px;
    margin: 50px 0 50px 0;

    height: 50px;
    width: 500px;

    gap: 5px;

    border: 2px solid;
    border-radius: 10px;

    animation: borderColor 2s infinite;
}

.difficulty-text
{
    display: flex;
    flex: 1;

    justify-content: center;
    align-items: center;
}

.slider-container
{
    display: flex;
    flex: 1;

    width: 100%;
    overflow: hidden;

    justify-content: flex-start;
    
    border-radius: 50px;
    background-color: rgb(20, 20, 20);
}

.slider
{
    height: 100%;

    border-radius: 10px;    

    background-color: var(--red);
}




.course-grid
{
    display: flex;
    justify-content: center;
    align-items: flex-start;

    flex-wrap: wrap;
    
    width: 90%;

}

.course-container
{  
    flex-basis: 24%;
    height: 200px;


    min-height: 200px;
    min-width: 300px;

    /*box-shadow: 0px 0px 10px;*/

    background-image: url('/Images/Course_Thumbnails/17_Survivor.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;

    margin: 5px;

    transition: transform .5s;
} 


.course-container:hover
{
    cursor: pointer;    
    transform: scale(1.05);
    transition: transform .5s;
}

.course-container:active
{
    transform: scale(1);
    transition: transform .5s;
}

.Footer
{
    display: flex;

    width: 100%;
    height: auto;

    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.Footer_Element
{
    height: 100px;
}

/* Specific styling for the image */
.Footer_Element img {
    max-height: 100%; /* Ensure the image height fits within the footer */
    max-width: 100%; /* Ensure the image width does not overflow */
}
