body {
    font-family: "Ubuntu Mono", "Dejavu Sans Mono", Consolas, Arial, sans-serif;
    background-color: #102E4E;
    color: #102E4E;
}

h1 {
    text-align: center;
    padding: 10pt 20pt 10pt 20pt;
}

h2 {
    text-align: center;
}

a {
    text-decoration: none;
    color: #00BFFF;
}

a:hover {
    color: #FFBA75;
}

.wrapper {
    margin: 2% 5% 2% 5%;
}

.toggle {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.toggle.active,
.toggle:hover {
    background-color: #ddd;
}

.title {
    color: #eee;
}

.panel {
    padding: 0px 12px;
    margin-bottom: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.subtitle {
    font-size: 20px;
}

.other {
    background-color: #cce5cc;
    border-left: 6px solid #20b2aa;
}

.note {
    background-color: #e5e5b7;
    border-left: 6px solid #ffeb3b;
}

.card {
    margin: 5px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: auto;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.card-inner {
    padding: 2px 16px;
}