.course {
    background-color: hsl(0, 0%, 100%);
    margin: 4% auto 5% auto;
    width: 70%;
    box-shadow: 0 10px 10px rgba(5, 5, 5, 0.1);
    padding: 20px;
    border-radius: 15px;
    
    border: 3PX solid #c6cbd1;
    font-family: "Roboto Condensed", sans-serif;
}

.picture img {
    width: 100px;
    height: 100px;
    border-radius: 1000%;
    object-fit: cover;
    box-shadow: -5px 5px 10px gray;
    margin-right: 20px;
    padding: 5px;
    margin-top: -90px;
}

h1 {
    padding-left: 130px;
    font-family:"Libre Baskerville", serif;
}

hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
}

input[type=text] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 20px 0;
    display: inline-block;
    border: none;
    background: #f1f1f1;
    box-sizing: border-box;
    border-radius: 5px;
}

input[type=text]:focus {
    background-color: #ddd;
    outline: none;
}

.card {
    background-color: white;
    width: 80vw;
    border: 3PX solid #c6cbd1;
    margin-bottom: 10px;
}


.btnAddCourse{
    
    position: absolute;
}
.btnAddCourse, .btn {
    background: #0F2B4E;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 15px;
    cursor: pointer;
    border: none;
    right: 10px;
    top: 15px;
}
.btnAddCourse:hover, .btn:hover
{
    box-shadow: 0 0 10px #0F2B4E;
}
.searchbar{
    display: flex;
    justify-content: center;
}
.txtsearch {
    margin-right: 10px;
    width: 50%;
    font-size: 16px;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 15px;
    border: 1px solid #0F2B4E;
}
.course_datails{
    display: flex;
    justify-content: center;
    border-radius: 25px;
}
.img_style{
    border: 3PX solid #c6cbd1;
    box-shadow: 2px 2px 10px #0F2B4E;
    background-color: #fefefe;
}
.card-course{
    width: 50%;
    margin: 10px 10%;
    padding: 10px 20px;
    border-radius: 25px;
}

a{
    text-decoration: none;
    color:black;
}
.row p{
    font-size: 20px;
}
.img_style:hover {
    transform: translateY(-10px) scale(1.02); /* translate up and scale up on hover */
    box-shadow: 0 0 30px #0F2B4E; /* increase box shadow on hover */
  }
