.all_courses{
    width: 1140px;
    margin: auto;
}
.course{
    margin-bottom: 40px;
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 40px;
}
.course-name a{
    font-size: 28px;
}
.course-content{
    display: flex;
}
.text-content{
    margin: 0 20px;
    font-size: 18px;
}
.buttons-container{
    margin-top: 30px;
}
.button{
    padding: 20px 40px;
    background-color: orange;
    border-radius: 30px;
    color: white;
    font-weight: 700;
    border: 1px solid #ffdd00;
}
.button:hover{
    color: white;
    background-color: #ffdd00;
}
.button.secondary{
    background-color: #23b723;
    border: 1px solid green;
}
.button.secondary:hover{
    background-color: green;
    color: white;
}