body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
   
}

header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em;
}

h1 {
    margin: 0;
}



#courses {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.course {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(165, 25, 25, 0.1);
    margin: 10px;
    padding: 20px;
    width: 300px;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

#imageSection {
    width: 100%;
    height: 100px; /* Adjust the height as needed */
}

.background-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.course:hover {
    transform: scale(1.05);
}

a {
    display: block;
    margin-top: 15px;
    padding: 10px;
    background-color: #333;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

a:hover {
    background-color: #555;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em;
    position: fixed;
    bottom: 0;
    width: 100%;
}
