* {
    margin: 0;
    padding: 0;
    font-family: 'Nanum Myeongjo', serif;
    background-color: #c8e0da;
}

@media screen and (max-width: 1535px) {
    .middle {
        width: 37% !important;
    }
}

h1 {
    white-space: nowrap;
}

@media screen and (max-width: 1374px) {
    .text-box h1 {
        font-size: 40px !important;
    }
    .text-box p {
        font-size: 23px !important;
    }
    .middle {
        width: 35% !important;
        top: 17% !important;
    }
}

@media screen and (max-width: 1270px) {
    .middle {
        width: 33% !important;
        top: 17% !important;
    }
}

@media screen and (max-width: 1170px) {
    .middle {
        width: 31% !important;
        top: 17% !important;
    }
}

@media screen and (max-width: 1115px) {
    .left {
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .audio {
        max-width: 300px;
    }
    .right {
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .container {
        max-width: 600px;
    }
    .massPause {
        margin-right: 20% !important;
    }
    footer {
        position: static !important;
        flex-shrink: 0 !important;
        padding-top: 7%;
        padding-right: 10%;
        padding-left: 10%;
        padding-bottom: 2%;
    }
    .container {
        height: 200px !important;
    }
    .middle {
        display: none !important;
    }
}


/* 🌿 SPOTIFY START  */

.spotify-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}


/* 🌿 PLAYER */

.spotify-window {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 8;
    width: 282px;
    border-radius: 14px;
    border: 1px solid #3c3d41;
    background: linear-gradient(180deg, #343438 0%, #161719 100%);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.spotify-window.hidden {
    display: none;
}

.spotify-window,
.spotify-window * {
    background-color: transparent;
}

.spotify-window.minimized .spotify-body {
    display: none;
}

.spotify-titlebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    background: #2a2b2f;
    border-bottom: 1px solid #404247;
    cursor: move;
    user-select: none;
}

.spotify-window-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #c5cbc7;
}

.spotify-window-actions {
    display: flex;
    gap: 6px;
}

.spotify-window-actions button {
    width: 23px;
    height: 23px;
    margin: 0;
    padding: 0;
    border: 1px solid #5f6469;
    border-radius: 7px;
    background: #3a3d41;
    color: #f2f4f3;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
}

.spotify-window-actions button::after {
    display: none;
    content: none;
}

.spotify-body {
    padding: 12px;
}

.spotify-now-playing {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.spotify-artwork {
    width: 74px;
    height: 74px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.spotify-now-meta {
    min-width: 0;
    flex: 1;
}

.spotify-status {
    display: block;
    margin-bottom: 6px;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b9c3bd;
}

.spotify-track-title {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spotify-track-artist {
    font-size: 12px;
    color: #d2d8d4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spotify-search-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.spotify-search-row input {
    flex: 1;
    min-width: 0;
    padding: 9px 10px;
    border: 1px solid #4a4f54;
    border-radius: 9px;
    background: #282a2e;
    color: #ffffff;
    font-size: 12px;
}

.spotify-search-row input::placeholder {
    color: #8d9298;
}

.spotify-search-row button {
    padding: 9px 12px;
    border: none;
    border-radius: 9px;
    background: #dae9e3;
    color: #24312d;
    font-size: 11px;
    text-transform: uppercase;
    cursor: pointer;
}

.mini-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.mini-controls button {
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #f2f4f3;
    color: #1f2522;
    cursor: pointer;
}

.mini-controls button::after,
.spotify-search-row button::after,
.spotify-login::after {
    display: none;
    content: none;
}

.mini-volume {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    color: #ffffff;
}

.mini-volume input {
    width: 100%;
    appearance: none;
    height: 2px;
    background: #8e9498;
}

.mini-volume input::-webkit-slider-thumb {
    appearance: none;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
}

.mini-volume input::-moz-range-thumb {
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.spotify-search-state {
    min-height: 18px;
    margin-bottom: 8px;
    font-size: 11px;
    color: #c9d0cc;
}

.spotify-results {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 180px;
    overflow-y: auto;
    padding-right: 4px;
}

.spotify-result {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    padding: 8px;
    border: 1px solid #4a4f54;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    text-align: left;
    cursor: pointer;
}

.spotify-result:hover {
    background: rgba(255, 255, 255, 0.1);
}

.spotify-result img {
    width: 42px;
    height: 42px;
    border-radius: 7px;
    object-fit: cover;
    flex-shrink: 0;
}

.spotify-result-meta {
    min-width: 0;
    flex: 1;
}

.spotify-result-name {
    font-size: 13px;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spotify-result-artist {
    font-size: 11px;
    color: #d6dbd8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spotify-result-duration {
    font-size: 11px;
    color: #dfe3e1;
    flex-shrink: 0;
}

.spotify-login {
    width: 100%;
    margin-top: 12px;
    padding: 10px 12px;
    border: none;
    border-radius: 999px;
    background: #1db954;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
}

.spotify-restore {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 8;
    padding: 8px 12px;
    border: 1px solid #4b5056;
    border-radius: 999px;
    background: #26282c;
    color: #f2f4f3;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.spotify-restore.hidden {
    display: none;
}


/* 🌿 ENDING */

@media screen and (max-width: 850px) {
    .modal-content {
        width: 60% !important;
    }
}

@media screen and (max-width: 700px) {
    .text-box h1 {
        font-size: 32px !important;
    }
    .text-box p {
        font-size: 18px !important;
    }
    .txtb,
    h3 {
        font-size: 16px !important;
    }
    .task {
        font-size: 15px !important;
    }
    .header {
        padding-bottom: 16px;
    }
    .nav-links {
        float: none;
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 4px 12px 0;
        min-height: 56px;
        position: static;
    }
    #pomodoroLauncher,
    #modalButton {
        margin-top: 0;
        height: 38px;
        min-width: 104px;
        padding: 8px 12px;
        font-size: 15px;
    }
    .content {
        padding: 1.25em 1em 2em;
    }
    .text-box h1 {
        white-space: normal;
        line-height: 1.05;
    }
    .container {
        width: 100%;
    }
    .pomodoro-window {
        left: 16px !important;
        right: 16px !important;
        top: 250px !important;
        width: auto;
    }
    .spotify-window {
        left: 16px !important;
        right: 16px !important;
        bottom: 16px !important;
        width: auto;
        max-height: calc(100vh - 32px);
    }
    .spotify-restore {
        left: 16px;
        bottom: 16px;
    }
    .spotify-body {
        padding: 10px;
    }
    .spotify-now-playing {
        gap: 8px;
        margin-bottom: 10px;
    }
    .spotify-artwork {
        width: 62px;
        height: 62px;
    }
    .spotify-track-title {
        font-size: 15px;
    }
    .spotify-track-artist {
        font-size: 11px;
    }
    .spotify-search-row {
        gap: 6px;
    }
    .spotify-search-row input,
    .spotify-search-row button {
        font-size: 11px;
    }
    .spotify-results {
        max-height: 120px;
    }
    .spotify-login {
        font-size: 11px;
        padding: 9px 10px;
    }
}

@media screen and (max-width: 1024px) {
    .nav-links {
        flex-wrap: nowrap;
    }
    .nav-links>button {
        margin-right: 0;
    }
    .spotify-window {
        width: min(320px, calc(100vw - 32px));
        left: 16px;
        bottom: 16px;
    }
    .pomodoro-window {
        width: min(236px, calc(100vw - 32px));
    }
}

.body {
    min-width: 450px;
    display: flex;
}

.header {
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 7%;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: nowrap;
    float: right;
    padding-right: 1%;
}

.nav-links>button {
    display: inline-block;
    margin-top: 0;
    margin-right: 0;
    height: 42px;
    min-width: 110px;
    padding: 10px 14px;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
}

#modalButton,
#pomodoroLauncher {
    width: auto;
    height: 42px;
    margin-right: 0;
    min-width: 110px;
    padding: 10px 14px;
    font-size: 18px;
    color: inherit;
    line-height: 1;
    text-indent: 0;
    overflow: visible;
    white-space: normal;
    border-radius: 999px;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.pomodoro-window {
    position: fixed;
    top: 325px;
    left: 325px;
    z-index: 9;
    width: 236px;
    border: 1px solid #b2c5bf;
    border-radius: 16px;
    background: #edf2ef;
    box-shadow: 0 14px 28px rgba(64, 80, 75, 0.18);
    overflow: hidden;
}

.pomodoro-window.hidden {
    display: none;
}

.pomodoro-window.minimized .pomodoro-body {
    display: none;
}

.pomodoro-titlebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-bottom: 1px solid #cfdbd6;
    background: #e5ece8;
    cursor: move;
    user-select: none;
}

.pomodoro-title,
.pomodoro-window-actions,
.pomodoro-window-actions button,
.pomodoro-body,
.pomodoro-actions,
.pomodoro-label,
.pomodoro-time {
    background-color: transparent;
}

.pomodoro-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #8a9c95;
}

.pomodoro-window-actions {
    display: flex;
    gap: 8px;
}

.pomodoro-window-actions button {
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
    border: 1px solid #b7c8c2;
    border-radius: 8px;
    background: #f7faf8;
    color: #90a29b;
    font-size: 14px;
    line-height: 1;
}

.pomodoro-window-actions button::after {
    display: none;
    content: none;
}

.pomodoro-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 22px 18px 20px;
}

.pomodoro-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #7f938b;
}

.pomodoro-time {
    font-size: 60px;
    line-height: 1;
    color: #37413d;
}

.pomodoro-actions {
    display: flex;
    gap: 10px;
}

.pomodoro-actions button {
    margin: 0;
    padding: 8px 14px;
    border: 1px solid #b6c9c2;
    border-radius: 999px;
    background: #eef4f1;
    color: #6b8178;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pomodoro-actions button::after {
    display: none;
    content: none;
}

.pomodoro-window.pomodoro-break {
    background: #f0f3e8;
}

.pomodoro-window.pomodoro-break .pomodoro-titlebar {
    background: #e8edde;
    border-bottom-color: #d7dfc9;
}

.pomodoro-window.pomodoro-break .pomodoro-label,
.pomodoro-window.pomodoro-break .pomodoro-time {
    color: #67775f;
}

.kofitext,
.kofiimg {
    background-color: #386857;
}

.header button {
    border: none;
    text-transform: uppercase;
    font-weight: bolder;
    margin-right: 25px;
    margin-top: 10px;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.header button:focus,
.header button:active {
    outline: none;
}

.header button::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #44806c;
    display: block;
    margin: auto;
    transition: 0.4s;
}

.header button:hover::after {
    width: 100%;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 40px;
    border: 1px solid #888;
    width: 40%;
}

.modal-content a {
    color: black;
}

.modal-content p,
.modal-content h2,
.modal-content a,
.modal-content span {
    background-color: white !important;
}

.close {
    color: #aaa;
    float: right;
    top: 5px;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.content {
    padding: 2em;
}

.left {
    position: relative;
    float: left;
    height: 100%;
    width: 30%;
    margin-left: 2%;
    display: block;
    padding: 10px;
}

.middle {
    position: absolute;
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    display: inline;
    top: 15%;
}

.illustration {
    width: 100%;
}

.text-box {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    max-width: 500px;
    text-align: center;
}

.text-box h1 {
    font-size: 54px;
}

.text-box p {
    font-size: 26px;
}

.container {
    width: 90%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    padding-right: 8px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: #7f938b rgba(255, 255, 255, 0.35);
}

.container::-webkit-scrollbar {
    width: 10px;
}

.container::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
}

.container::-webkit-scrollbar-thumb {
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: #7f938b;
}

.container::-webkit-scrollbar-thumb:hover {
    background: #667972;
}

.txtb {
    width: 93%;
    border: none;
    border-bottom: 2px solid #000;
    padding: 10px;
    background: none;
    font-size: 18px;
}

h3 {
    margin: 10px 0;
}

.task {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, .5);
    padding: 12px;
    margin: 5px 0;
    overflow-wrap: break-word;
}

.task-label {
    flex: 1;
    min-width: 0;
    background-color: transparent;
    word-break: break-word;
}

.task-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex-shrink: 0;
    background-color: transparent;
}

.task i,
.task-complete-badge,
.task-complete-badge span {
    background-color: transparent;
}

.task i {
    background-color: transparent;
}

.fas:hover {
    cursor: pointer;
}

.comp .task {
    background: rgba(0, 0, 0, .5);
    color: #fff;
}

.comp .task .task-actions {
    gap: 12px;
}

.comp .task i {
    color: #f7f2dc;
}

.task-complete-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-shrink: 0;
    color: #f7f2dc;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.task-complete-badge i {
    color: #f4d35e;
}

.task-complete-badge span {
    display: inline-block;
    line-height: 1;
}

.notcomp,
.comp {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

@media screen and (max-width: 700px) {
    .task {
        gap: 10px;
        padding: 10px;
    }

    .task-actions {
        gap: 10px;
    }
}

.right {
    margin-right: 4%;
    float: right;
}

.audio {
    margin: 36px auto;
    width: 100%;
}

.audio span {
    align-items: center;
    display: flex;
    margin: 10px;
}

.audio button {
    appearance: auto;
    height: 15px;
    width: 15px;
    cursor: pointer;
    border: none;
    background: transparent;
    background-size: 15px;
}

.unpressed button {
    background-image: url(https://img.icons8.com/android/24/000000/play.png);
}

.pressed button {
    background-image: url(https://img.icons8.com/android/24/000000/pause.png);
}

.volume-control {
    background-image: url(https://img.icons8.com/material-rounded/24/000000/no-audio--v2.png);
    background-size: 16px;
    height: 16px;
    width: 16px;
    display: flex;
    margin-right: 5px;
}

.muted {
    background-image: url(https://img.icons8.com/material-rounded/24/000000/no-audio--v1.png);
}

.vol-control {
    appearance: none;
    -webkit-appearance: none;
    width: 250px;
    height: 2px;
    border-radius: 5px;
    background: #333333;
    position: relative;
    display: flex;
}

.vol-control::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #44806c;
    cursor: pointer;
}

.massPause {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    margin-right: auto;
}

#pauseAll {
    height: 15px;
    width: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 2px solid #000;
    border-radius: 2px;
    cursor: pointer;
    background-color: transparent;
}

#pauseAll:checked {
    background-color: #000;
    content: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4Igp3aWR0aD0iNDgiIGhlaWdodD0iNDgiCnZpZXdCb3g9IjAgMCAxNzIgMTcyIgpzdHlsZT0iIGZpbGw6IzAwMDAwMDsiPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjkyMiwxMC45MjIpIHNjYWxlKDAuODczLDAuODczKSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJub256ZXJvIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9ImJ1dHQiIHN0cm9rZS1saW5lam9pbj0ibm9uZSIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtZGFzaGFycmF5PSIiIHN0cm9rZS1kYXNob2Zmc2V0PSIwIiBmb250LWZhbWlseT0ibm9uZSIgZm9udC13ZWlnaHQ9Im5vbmUiIGZvbnQtc2l6ZT0ibm9uZSIgdGV4dC1hbmNob3I9Im5vbmUiIHN0eWxlPSJtaXgtYmxlbmQtbW9kZTogbm9ybWFsIj48ZyBmaWxsPSIjMDAwMDAwIiBzdHJva2U9IiNmNWY1ZjYiIHN0cm9rZS13aWR0aD0iMjUiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxwYXRoIGQ9Ik0xNTAuNjA3NSwzMy4xNzcxOWMxLjI3NjU2LDIuMjg0MzggMS4xNTU2Myw1LjA3OTM4IC0wLjMyMjUsNy4yNDI4MWwtNjkuMTIyNSwxMDUuNTY1Yy0xLjA3NSwxLjY1MjgxIC0yLjgwODQ0LDIuNzY4MTMgLTQuNzcwMzEsMy4wNjM3NWMtMS45NDg0NCwwLjI4MjE5IC0zLjkzNzE5LC0wLjI4MjE5IC01LjQ0MjE5LC0xLjU1ODc1bC00Ny45NDUsLTQxLjQ5NWMtMi4wOTYyNSwtMS41NDUzMSAtMy4xMzA5NCwtNC4xMjUzMSAtMi43MDA5NCwtNi42OTE4N2MwLjQzLC0yLjU1MzEzIDIuMjcwOTQsLTQuNjQ5MzggNC43NDM0NCwtNS40MTUzMWMyLjQ4NTk0LC0wLjc3OTM4IDUuMTg2ODgsLTAuMDgwNjMgNi45ODc1LDEuNzg3MTlsNDEuOTI1LDM2LjIyNzVsNjQuNzE1LC05OS4wMDc1YzEuMjA5MzgsLTEuOTM1IDMuMzA1NjMsLTMuMTQ0MzcgNS41OSwtMy4yMjVjMi42MDY4OCwtMC4xMjA5NCA1LjA2NTk0LDEuMjM2MjUgNi4zNDI1LDMuNTA3MTl6Ij48L3BhdGg+PC9nPjxwYXRoIGQ9Ik0wLDE3MnYtMTcyaDE3MnYxNzJ6IiBmaWxsPSJub25lIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVqb2luPSJtaXRlciI+PC9wYXRoPjxnIGZpbGw9IiNmNWY1ZjUiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWpvaW49Im1pdGVyIj48cGF0aCBkPSJNMTQ0LjI2NSwyOS42N2MtMi4yODQzNywwLjA4MDYzIC00LjM4MDYyLDEuMjkgLTUuNTksMy4yMjVsLTY0LjcxNSw5OS4wMDc1bC00MS45MjUsLTM2LjIyNzVjLTEuODAwNjIsLTEuODY3ODEgLTQuNTAxNTYsLTIuNTY2NTYgLTYuOTg3NSwtMS43ODcxOWMtMi40NzI1LDAuNzY1OTQgLTQuMzEzNDQsMi44NjIxOSAtNC43NDM0NCw1LjQxNTMxYy0wLjQzLDIuNTY2NTYgMC42MDQ2OSw1LjE0NjU2IDIuNzAwOTQsNi42OTE4N2w0Ny45NDUsNDEuNDk1YzEuNTA1LDEuMjc2NTYgMy40OTM3NSwxLjg0MDk0IDUuNDQyMTksMS41NTg3NWMxLjk2MTg4LC0wLjI5NTYyIDMuNjk1MzEsLTEuNDEwOTQgNC43NzAzMSwtMy4wNjM3NWw2OS4xMjI1LC0xMDUuNTY1YzEuNDc4MTMsLTIuMTYzNDQgMS41OTkwNiwtNC45NTg0NCAwLjMyMjUsLTcuMjQyODFjLTEuMjc2NTYsLTIuMjcwOTQgLTMuNzM1NjIsLTMuNjI4MTIgLTYuMzQyNSwtMy41MDcxOXoiPjwvcGF0aD48L2c+PHBhdGggZD0iIiBmaWxsPSJub25lIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVqb2luPSJtaXRlciI+PC9wYXRoPjwvZz48L2c+PC9zdmc+);
}

.hidden {
    visibility: hidden;
}

#note {
    font-size: 14px;
}

footer {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #000;
    display: block;
    float: right;
    font-size: 15px;
}

footer a {
    color: #000;
}