Kurse
.course-card {
border: 1px solid #e0e0e0;
border-radius: 8px;
overflow: hidden;
transition: transform 0.3s;
max-width: 300px;
margin: 20px;
}
.course-card:hover {
transform: scale(1.05);
}
.course-image {
width: 100%;
height: auto;
}
.course-content {
padding: 15px;
background-color: #fff;
}
.course-title {
font-size: 1.5em;
margin-bottom: 10px;
color: #333;
}
.course-description {
font-size: 1em;
color: #666;
}
.course-link {
display: inline-block;
margin-top: 10px;
padding: 10px 15px;
background-color: #007BFF;
color: #fff;
text-decoration: none;
border-radius: 4px;
transition: background-color 0.3s;
}
.course-link:hover {
background-color: #0056b3;
}