/* Some general stuff */ 
* {
    margin: 0;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-family: 'Roboto', sans-serif;
}

body {
    overflow-x: hidden;
}

/* The main page content */ 
#page_content {
    position: relative;
    transition: .3s ease-in-out;
}


/* SECTION6 - Schedule Online */
#schedule_online {
    width: 100%;
    height: auto;
    padding: 120px 0 80px 0;
    text-align: center;

    background-color: #ffffff;
}

#schedule_online #schedule_header {
    width: calc(100% - 30px);
    margin: 0 auto;
    text-align: center;
}

#schedule_online #schedule_header h1 {
    font-size: 35px;
    line-height: 15px;
    letter-spacing: -1px;
    font-style: italic;
    font-weight: 300;
    color: #000000;
}

#schedule_online #schedule_header h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    letter-spacing: -2px;
    font-size: 50px;
    color: #007fff;
}

#schedule_online #schedule_content {
    width: 100%;
    min-height: 400px; /* don't forget to set the height to auto */
    height: auto;
    text-align: center;
    align-items: center;

    /* delete this later */ 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#schedule_online #schedule_content h1 {
    max-width: 300px;
    font-size: 26px;
    color: #007fff;
}

@media (max-width: 400px) {
    #schedule_online #schedule_header h2 {font-size: 40px;}
}