.shedule{display: flex; flex-wrap: wrap;}
.shedule-day{margin: 10px; background: #f5f5f5;}
.shedule-title{padding: 20px; background: #969696; color:#fff; font-weight: 800; font-size: 1.5em;}
.shedule-content{padding: 20px; text-align: left;}
.shedule p.shedule-dayofweek{margin-bottom: 20px; font-weight: bold;}
.shedule p.shedule-teacher{margin-top: 20px; font-weight: bold; white-space: nowrap;}
.shedule-break{color:rgb(102, 102, 102);}
.shedule p{margin: 3px 0;}

@media (max-width:1280px) {
    .shedule-day {
         flex-basis: 43%;
    }
}
@media (max-width:768px) {
    .shedule-day {
        flex-basis: 100%;
    }
    .shedule p.shedule-teacher{white-space: normal;}
    .shedule-title {padding: 10px;}
}