html,
body {
    height: 100%;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}

.grade {
    padding: 20px 20px 20px 20px;
    flex: 1 0 auto;
}

footer {
    display: flex;
    padding: 10px 20px;
    align-items: center;
    color: white;
    font-size: 30px;
    background: black;
    flex-shrink: 0;
}

footer>a,
footer>a:visited {
    color: white;
    font-size: 16px;
    text-decoration: underline;
}

.footer-title {
    font-size: 20px;
    margin: 0 20px;
    text-decoration: none;
}

.footer-title :visited {
    color: white;
}

.space {
    flex-grow: 1;
}

.python-logo {
    width: 30px;
    height: 30px;
}

.made-with {
    text-align: right;
    font-size: 12px;
    font-family: 'Roboto Mono', monospace;
}

.made-with a,
.made-with a:active {
    text-decoration: underline;
    color: white;
}

.made-with a:hover {
    text-decoration: none;
}

.made-with span {
    color: #f56b6b;
}

.fc-list-item-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.meta {
    font-family: "Lucida Console", Monaco, monospace;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.speaker {
    color: #3a3a3a;
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 4px;
}
.speaker-keynote {
    background: #FF7F7F;
    color: #462984;
}

.room {
    padding: 2px 6px;
    margin-left: 20px;
    border-radius: 4px;
    color: rgb(116, 255, 190);
    background: #3C59F0;
}

.room a {
    margin-left: 0;
}

.pep0 {
    color: rgb(116, 255, 190);
    background: #3C59F0;
}

.pep8 {
    color: #FF7F7F;
    background: #462984;
}

.pep20 {
    color: #2e2912;
    background: #fff56f;
}

.pep20 {
    color: #2e2912;
    background: #fff56f;
}

.pep404 {
    color: #132b16;
    background: #6fff87;
}

.youtube {
    color: rgb(0, 0, 0);
    background: #cfcfcf;
    padding: 2px 6px;
    margin-left: 20px;
    border-radius: 4px;
}

.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(255, 255, 255);
    /* Black fallback color */
    /* background-color: rgba(255, 255, 255, 0.9); */
    /* Black w/opacity */
    overflow-x: hidden;
    /* Disable horizontal scroll */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

#overlay-title {
    padding-right: 35px;
}

.overlay-content {
    margin: auto;
    width: 80%;
}

.overlay .close-full-detail {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

#overlay-author,
#overlay-room {
    padding: 4px 8px;
}

@media only screen and (max-width: 600px) {
    .fc-list-item {
        display: flex;
        flex-direction: column;
    }
    .fc-list-item-marker {
        display: none;
    }
    .fc-list-item-time,
    .fc-list-item-title {
        border-width: 0;
    }
    .fc-list-item-title {
        flex-direction: column;
    }
    .fc-list-item td:last-child {
        border-bottom-width: 1px !important;
    }
    .fc-list-table td {
        border-width: 0;
    }
    .meta {
        margin-top: 10px;
    }
    .speaker {
        margin-right: 0;
    }
}

.keynote-entry {
    background: #fff0f0;
}

.keynote-entry a {
    font-weight: bolder;
}


.cfuso {
  background-color: #008CBA;
  border: none;
  color: white;
  padding: 10px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 8px;
}