body {
    background-color: #FAFAFA;
    width:80%;
    margin: 0 auto;
}


header{
    display:flex;
    align-items: center;
}
#basic-info{
    flex-grow: 2;
}
#logo{
    flex-grow: 1;
}

#logo img{
}


.table {
    display:flex;
    flex-wrap: wrap;
}
.table li{
    list-style-type: none;
    padding-bottom: 5px;
    padding-top: 5px;
}
.table li:nth-child(odd){
    box-sizing: border-box;
    font-weight: bold;
    font-style: italic;
    text-align: right;
    padding-right: 10px;
}
.colon-table li:nth-child(odd)::after{
    content: ":";
}

.table li:nth-child(odd){
    width:15%;
}
.table li:nth-child(even){
    width:85%;
}

section{
    border-top:  1px solid black;
}


.head-table li:nth-child(odd){
    width:30%;
}

.head-table li:nth-child(even){
    width:70%;
}


.schedule-table {
    box-sizing: border-box;
    border:  1px solid black;
    margin:0px;
    padding:0px;
}

.schedule-table li{
    box-sizing: border-box;
    padding-top: 30px;
    padding-bottom: 30px;
}

.schedule-table li:nth-child(odd){
    text-align: left;
    padding-left:10px;
}

.schedule-table li:nth-child(4n+1), .schedule-table li:nth-child(4n+2){
   background-color: #eee;
}



footer{
    padding:100px;
}





@media screen and (max-width: 780px) {

    header img{
        display:none;
    }

    .table{
        padding: 0px;
    }
    .table li:nth-child(n){
        width:100%;
        text-align: left;
        padding: 0px;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
    }
    
    .table li:nth-child(odd){    
        padding-top: 10px;
    }
    .table li:nth-child(even){    
        padding-bottom: 10px;
    }
     
    .schedule-table li:nth-child(n){
        width: 100%;
        padding: 0px;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
    }
    .schedule-table li:nth-child(odd){    
        padding-top: 10px;
    }
    .schedule-table li:nth-child(even){    
        padding-bottom: 10px;
    }
    
}



